> ## Documentation Index
> Fetch the complete documentation index at: https://docs.squarecloud.app/llms.txt
> Use this file to discover all available pages before exploring further.

# Anmeldedaten zurücksetzen

> Setzen Sie das Zertifikat oder ein Passwort einer bei Square Cloud gehosteten Datenbank zurück.

<ParamField header="Authorization" type="string" placeholder="API Key" required>
  Der API-Schlüssel für Ihr Konto. Sie finden ihn in Ihren [Kontoeinstellungen](https://squarecloud.app/de/account/security).
</ParamField>

### Parameter

<ParamField path="database_id" type="string" placeholder="Database ID" required>
  Die ID der Datenbank.
</ParamField>

<ParamField body="reset" type="string" placeholder="password/certificate" required>
  Die Anmeldedaten, die Sie zurücksetzen möchten: password oder certificate.
</ParamField>

### Antwort

<ResponseField name="status" type="string">
  Gibt an, ob der Aufruf erfolgreich war. `success` bei Erfolg, `error` andernfalls.
</ResponseField>

#### Bei einem Passwort-Reset

<ResponseField name="response" type="object">
  Der Inhalt der Antwort.

  <Expandable title="Objekt umschalten">
    <ResponseField name="password" type="string">
      Das neu generierte Passwort.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "status":"success",
    "response":{
      "password":"f3T1hdskMkchMwK6Hxqinoyb"
    }
  }
  ```
</ResponseExample>
