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

# Master-Passwörter

> Bereichsgebundene Master-Passwörter erstellen, auflisten, umbenennen und löschen.

# Master-Passwörter

Bereichsgebundene Master-Passwörter erstellen, auflisten, umbenennen und löschen.

<script src="/locale-bridge.js" />

Die Beispiele verwenden den A2A-Code-Modus. MCP stellt denselben Code-Modus über sein Tool `execute` bereit.

## Funktionen

### `credentials.add`

```text theme={null}
credentials.add(account_id: str, name: str, domain?: str | null, generate?: bool, value?: str | null, workspace_id?: str | null) -> MasterPassword
```

Master-Passwörter: `credentials.add`.

| Eigenschaft                | Wert                                                | Eigenschaft                    | Wert                |
| -------------------------- | --------------------------------------------------- | ------------------------------ | ------------------- |
| Erforderliche Berechtigung | `credential.manage`                                 | Authentifizierung erforderlich | `ja`                |
| Ausführungsmodus           | `sync`                                              | Fähigkeit                      | `credential.manage` |
| Ressourcentyp              | `account`                                           | Ressourcen-ID-Feld             | `account_id`        |
| Öffentliche API-Route      | `POST /v1/public/accounts/{account_id}/credentials` |                                |                     |

<AccordionGroup>
  <Accordion title="Argumente">
    | Name           | Typ           | Erforderlich |
    | -------------- | ------------- | ------------ |
    | `account_id`   | `str`         | ja           |
    | `name`         | `str`         | ja           |
    | `domain`       | `str \| null` | nein         |
    | `generate`     | `bool`        | nein         |
    | `value`        | `str \| null` | nein         |
    | `workspace_id` | `str \| null` | nein         |
  </Accordion>

  <Accordion title="Rückgabe">
    | Feld               | Typ                                    | Erforderlich |
    | ------------------ | -------------------------------------- | ------------ |
    | `created_at`       | `str`                                  | ja           |
    | `id`               | `str`                                  | ja           |
    | `name`             | `str`                                  | ja           |
    | `scope_id`         | `str`                                  | ja           |
    | `scope_type`       | `"account" \| "workspace" \| "domain"` | ja           |
    | `updated_at`       | `str`                                  | ja           |
    | `generated_secret` | `str \| null`                          | nein         |
  </Accordion>

  <Accordion title="A2A-Beispiel">
    Anfrage:

    ```json theme={null}
    {
      "request_id": "example",
      "session_id": "session_123",
      "code": "credentials.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", name=\"<string>\", domain=\"example.com\", generate=true, value=\"<string>\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
    }
    ```

    Antwort:

    ```json theme={null}
    {
      "request_id": "example",
      "status": "completed",
      "result": {
        "last_value": "<string>"
      },
      "responses": [
        {
          "index": 0,
          "function": "credentials.add",
          "status": "completed",
          "result": "<string>"
        }
      ],
      "complexity_score": 1
    }
    ```
  </Accordion>

  <Accordion title="MCP-Beispiel">
    Anfrage:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "method": "tools/call",
      "params": {
        "name": "hybridbox_execute",
        "arguments": {
          "code": "credentials.add(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", name=\"<string>\", domain=\"example.com\", generate=true, value=\"<string>\", workspace_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
        }
      }
    }
    ```

    Antwort:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "result": {
        "content": [
          {
            "type": "text",
            "text": "{\n  \"request_id\": \"example\",\n  \"status\": \"completed\",\n  \"result\": {\n    \"last_value\": \"<string>\"\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"credentials.add\",\n      \"status\": \"completed\",\n      \"result\": \"<string>\"\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `credentials.delete`

```text theme={null}
credentials.delete(account_id: str, credential_id: str) -> {}
```

Master-Passwörter: `credentials.delete`.

| Eigenschaft                | Wert                                                                  | Eigenschaft                    | Wert                |
| -------------------------- | --------------------------------------------------------------------- | ------------------------------ | ------------------- |
| Erforderliche Berechtigung | `credential.manage`                                                   | Authentifizierung erforderlich | `ja`                |
| Ausführungsmodus           | `sync`                                                                | Fähigkeit                      | `credential.manage` |
| Ressourcentyp              | `account`                                                             | Ressourcen-ID-Feld             | `account_id`        |
| Öffentliche API-Route      | `DELETE /v1/public/accounts/{account_id}/credentials/{credential_id}` |                                |                     |

<AccordionGroup>
  <Accordion title="Argumente">
    | Name            | Typ   | Erforderlich |
    | --------------- | ----- | ------------ |
    | `account_id`    | `str` | ja           |
    | `credential_id` | `str` | ja           |
  </Accordion>

  <Accordion title="Rückgabe">
    | Feld     | Typ  | Erforderlich |
    | -------- | ---- | ------------ |
    | `result` | `{}` | ja           |
  </Accordion>

  <Accordion title="A2A-Beispiel">
    Anfrage:

    ```json theme={null}
    {
      "request_id": "example",
      "session_id": "session_123",
      "code": "credentials.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", credential_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
    }
    ```

    Antwort:

    ```json theme={null}
    {
      "request_id": "example",
      "status": "completed",
      "result": {
        "last_value": {}
      },
      "responses": [
        {
          "index": 0,
          "function": "credentials.delete",
          "status": "completed",
          "result": {}
        }
      ],
      "complexity_score": 1
    }
    ```
  </Accordion>

  <Accordion title="MCP-Beispiel">
    Anfrage:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "method": "tools/call",
      "params": {
        "name": "hybridbox_execute",
        "arguments": {
          "code": "credentials.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", credential_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\")"
        }
      }
    }
    ```

    Antwort:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "result": {
        "content": [
          {
            "type": "text",
            "text": "{\n  \"request_id\": \"example\",\n  \"status\": \"completed\",\n  \"result\": {\n    \"last_value\": {}\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"credentials.delete\",\n      \"status\": \"completed\",\n      \"result\": {}\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `credentials.list`

```text theme={null}
credentials.list(account_id: str, page?: int, page_size?: int) -> Page[MasterPassword]
```

Master-Passwörter: `credentials.list`.

| Eigenschaft                | Wert                                               | Eigenschaft                    | Wert              |
| -------------------------- | -------------------------------------------------- | ------------------------------ | ----------------- |
| Erforderliche Berechtigung | `credential.view`                                  | Authentifizierung erforderlich | `ja`              |
| Ausführungsmodus           | `sync`                                             | Fähigkeit                      | `credential.view` |
| Ressourcentyp              | `account`                                          | Ressourcen-ID-Feld             | `account_id`      |
| Öffentliche API-Route      | `GET /v1/public/accounts/{account_id}/credentials` |                                |                   |

<AccordionGroup>
  <Accordion title="Argumente">
    | Name         | Typ   | Erforderlich |
    | ------------ | ----- | ------------ |
    | `account_id` | `str` | ja           |
    | `page`       | `int` | nein         |
    | `page_size`  | `int` | nein         |
  </Accordion>

  <Accordion title="Rückgabe">
    | Feld        | Typ                                                                                                                                     | Erforderlich |
    | ----------- | --------------------------------------------------------------------------------------------------------------------------------------- | ------------ |
    | `items`     | `[{"created_at": str, "id": str, "name": str, "scope_id": str, "scope_type": "account" \| "workspace" \| "domain", "updated_at": str}]` | ja           |
    | `page`      | `int`                                                                                                                                   | ja           |
    | `page_size` | `int`                                                                                                                                   | ja           |
    | `total`     | `int`                                                                                                                                   | ja           |
  </Accordion>

  <Accordion title="A2A-Beispiel">
    Anfrage:

    ```json theme={null}
    {
      "request_id": "example",
      "session_id": "session_123",
      "code": "credentials.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123)"
    }
    ```

    Antwort:

    ```json theme={null}
    {
      "request_id": "example",
      "status": "completed",
      "result": {
        "last_value": "<string>"
      },
      "responses": [
        {
          "index": 0,
          "function": "credentials.list",
          "status": "completed",
          "result": "<string>"
        }
      ],
      "complexity_score": 1
    }
    ```
  </Accordion>

  <Accordion title="MCP-Beispiel">
    Anfrage:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "method": "tools/call",
      "params": {
        "name": "hybridbox_execute",
        "arguments": {
          "code": "credentials.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123)"
        }
      }
    }
    ```

    Antwort:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "result": {
        "content": [
          {
            "type": "text",
            "text": "{\n  \"request_id\": \"example\",\n  \"status\": \"completed\",\n  \"result\": {\n    \"last_value\": \"<string>\"\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"credentials.list\",\n      \"status\": \"completed\",\n      \"result\": \"<string>\"\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `credentials.update`

```text theme={null}
credentials.update(account_id: str, credential_id: str, name: str) -> MasterPassword
```

Master-Passwörter: `credentials.update`.

| Eigenschaft                | Wert                                                                 | Eigenschaft                    | Wert                |
| -------------------------- | -------------------------------------------------------------------- | ------------------------------ | ------------------- |
| Erforderliche Berechtigung | `credential.manage`                                                  | Authentifizierung erforderlich | `ja`                |
| Ausführungsmodus           | `sync`                                                               | Fähigkeit                      | `credential.manage` |
| Ressourcentyp              | `account`                                                            | Ressourcen-ID-Feld             | `account_id`        |
| Öffentliche API-Route      | `PATCH /v1/public/accounts/{account_id}/credentials/{credential_id}` |                                |                     |

<AccordionGroup>
  <Accordion title="Argumente">
    | Name            | Typ   | Erforderlich |
    | --------------- | ----- | ------------ |
    | `account_id`    | `str` | ja           |
    | `credential_id` | `str` | ja           |
    | `name`          | `str` | ja           |
  </Accordion>

  <Accordion title="Rückgabe">
    | Feld         | Typ                                    | Erforderlich |
    | ------------ | -------------------------------------- | ------------ |
    | `created_at` | `str`                                  | ja           |
    | `id`         | `str`                                  | ja           |
    | `name`       | `str`                                  | ja           |
    | `scope_id`   | `str`                                  | ja           |
    | `scope_type` | `"account" \| "workspace" \| "domain"` | ja           |
    | `updated_at` | `str`                                  | ja           |
  </Accordion>

  <Accordion title="A2A-Beispiel">
    Anfrage:

    ```json theme={null}
    {
      "request_id": "example",
      "session_id": "session_123",
      "code": "credentials.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", credential_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", name=\"<string>\")"
    }
    ```

    Antwort:

    ```json theme={null}
    {
      "request_id": "example",
      "status": "completed",
      "result": {
        "last_value": "<string>"
      },
      "responses": [
        {
          "index": 0,
          "function": "credentials.update",
          "status": "completed",
          "result": "<string>"
        }
      ],
      "complexity_score": 1
    }
    ```
  </Accordion>

  <Accordion title="MCP-Beispiel">
    Anfrage:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "method": "tools/call",
      "params": {
        "name": "hybridbox_execute",
        "arguments": {
          "code": "credentials.update(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", credential_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", name=\"<string>\")"
        }
      }
    }
    ```

    Antwort:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "result": {
        "content": [
          {
            "type": "text",
            "text": "{\n  \"request_id\": \"example\",\n  \"status\": \"completed\",\n  \"result\": {\n    \"last_value\": \"<string>\"\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"credentials.update\",\n      \"status\": \"completed\",\n      \"result\": \"<string>\"\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>
