> ## 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.

# Werkruimten

> Werkruimten en werkruimteleden beheren.

# Werkruimten

Werkruimten en werkruimteleden beheren.

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

De voorbeelden gebruiken de A2A-codemodus. MCP biedt dezelfde codemodus via het hulpmiddel `execute`.

## Functies

### `workspaces.add`

```text theme={null}
workspaces.add(account_id: str, name: str) -> Workspace
```

Werkruimten: `workspaces.add`.

| Eigenschap          | Waarde                                             | Eigenschap            | Waarde             |
| ------------------- | -------------------------------------------------- | --------------------- | ------------------ |
| Vereiste machtiging | `workspace.manage`                                 | Authenticatie vereist | `ja`               |
| Uitvoermodus        | `sync`                                             | Mogelijkheid          | `workspace.manage` |
| Resourcetype        | `account`                                          | Resource-ID-veld      | `account_id`       |
| Openbare API-route  | `POST /v1/public/accounts/{account_id}/workspaces` |                       |                    |

<AccordionGroup>
  <Accordion title="Argumenten">
    | Naam         | Type  | Vereist |
    | ------------ | ----- | ------- |
    | `account_id` | `str` | ja      |
    | `name`       | `str` | ja      |
  </Accordion>

  <Accordion title="Retourneert">
    | Veld         | Type          | Vereist |
    | ------------ | ------------- | ------- |
    | `account_id` | `str`         | ja      |
    | `id`         | `str`         | ja      |
    | `name`       | `str`         | ja      |
    | `created_at` | `str \| null` | nee     |
    | `status`     | `str`         | nee     |
    | `updated_at` | `str \| null` | nee     |
  </Accordion>

  <Accordion title="A2A-voorbeeld">
    Aanvraag:

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

    Respons:

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

  <Accordion title="MCP-voorbeeld">
    Aanvraag:

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

    Respons:

    ```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\": \"workspaces.add\",\n      \"status\": \"completed\",\n      \"result\": \"<string>\"\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `workspaces.delete`

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

Werkruimten: `workspaces.delete`.

| Eigenschap          | Waarde                                                              | Eigenschap            | Waarde             |
| ------------------- | ------------------------------------------------------------------- | --------------------- | ------------------ |
| Vereiste machtiging | `workspace.manage`                                                  | Authenticatie vereist | `ja`               |
| Uitvoermodus        | `sync`                                                              | Mogelijkheid          | `workspace.manage` |
| Resourcetype        | `account`                                                           | Resource-ID-veld      | `account_id`       |
| Openbare API-route  | `DELETE /v1/public/accounts/{account_id}/workspaces/{workspace_id}` |                       |                    |

<AccordionGroup>
  <Accordion title="Argumenten">
    | Naam           | Type  | Vereist |
    | -------------- | ----- | ------- |
    | `account_id`   | `str` | ja      |
    | `workspace_id` | `str` | ja      |
  </Accordion>

  <Accordion title="Retourneert">
    | Veld     | Type | Vereist |
    | -------- | ---- | ------- |
    | `result` | `{}` | ja      |
  </Accordion>

  <Accordion title="A2A-voorbeeld">
    Aanvraag:

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

    Respons:

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

  <Accordion title="MCP-voorbeeld">
    Aanvraag:

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

    Respons:

    ```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\": \"workspaces.delete\",\n      \"status\": \"completed\",\n      \"result\": {}\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `workspaces.get`

```text theme={null}
workspaces.get(account_id: str, workspace_id: str) -> Workspace
```

Werkruimten: `workspaces.get`.

| Eigenschap          | Waarde                                                           | Eigenschap            | Waarde           |
| ------------------- | ---------------------------------------------------------------- | --------------------- | ---------------- |
| Vereiste machtiging | `workspace.view`                                                 | Authenticatie vereist | `ja`             |
| Uitvoermodus        | `sync`                                                           | Mogelijkheid          | `workspace.view` |
| Resourcetype        | `account`                                                        | Resource-ID-veld      | `account_id`     |
| Openbare API-route  | `GET /v1/public/accounts/{account_id}/workspaces/{workspace_id}` |                       |                  |

<AccordionGroup>
  <Accordion title="Argumenten">
    | Naam           | Type  | Vereist |
    | -------------- | ----- | ------- |
    | `account_id`   | `str` | ja      |
    | `workspace_id` | `str` | ja      |
  </Accordion>

  <Accordion title="Retourneert">
    | Veld         | Type          | Vereist |
    | ------------ | ------------- | ------- |
    | `account_id` | `str`         | ja      |
    | `id`         | `str`         | ja      |
    | `name`       | `str`         | ja      |
    | `created_at` | `str \| null` | nee     |
    | `status`     | `str`         | nee     |
    | `updated_at` | `str \| null` | nee     |
  </Accordion>

  <Accordion title="A2A-voorbeeld">
    Aanvraag:

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

    Respons:

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

  <Accordion title="MCP-voorbeeld">
    Aanvraag:

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

    Respons:

    ```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\": \"workspaces.get\",\n      \"status\": \"completed\",\n      \"result\": \"<string>\"\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `workspaces.list`

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

Werkruimten: `workspaces.list`.

| Eigenschap          | Waarde                                            | Eigenschap            | Waarde           |
| ------------------- | ------------------------------------------------- | --------------------- | ---------------- |
| Vereiste machtiging | `workspace.view`                                  | Authenticatie vereist | `ja`             |
| Uitvoermodus        | `sync`                                            | Mogelijkheid          | `workspace.view` |
| Resourcetype        | `account`                                         | Resource-ID-veld      | `account_id`     |
| Openbare API-route  | `GET /v1/public/accounts/{account_id}/workspaces` |                       |                  |

<AccordionGroup>
  <Accordion title="Argumenten">
    | Naam         | Type  | Vereist |
    | ------------ | ----- | ------- |
    | `account_id` | `str` | ja      |
    | `page`       | `int` | nee     |
    | `page_size`  | `int` | nee     |
  </Accordion>

  <Accordion title="Retourneert">
    | Veld        | Type                                                                                                                    | Vereist |
    | ----------- | ----------------------------------------------------------------------------------------------------------------------- | ------- |
    | `items`     | `[{"account_id": str, "id": str, "name": str, "created_at"?: str \| null, "status"?: str, "updated_at"?: str \| null}]` | ja      |
    | `page`      | `int`                                                                                                                   | ja      |
    | `page_size` | `int`                                                                                                                   | ja      |
    | `total`     | `int`                                                                                                                   | ja      |
  </Accordion>

  <Accordion title="A2A-voorbeeld">
    Aanvraag:

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

    Respons:

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

  <Accordion title="MCP-voorbeeld">
    Aanvraag:

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

    Respons:

    ```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\": \"workspaces.list\",\n      \"status\": \"completed\",\n      \"result\": \"<string>\"\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `workspaces.update`

```text theme={null}
workspaces.update(account_id: str, workspace_id: str, name: str) -> Workspace
```

Werkruimten: `workspaces.update`.

| Eigenschap          | Waarde                                                             | Eigenschap            | Waarde             |
| ------------------- | ------------------------------------------------------------------ | --------------------- | ------------------ |
| Vereiste machtiging | `workspace.manage`                                                 | Authenticatie vereist | `ja`               |
| Uitvoermodus        | `sync`                                                             | Mogelijkheid          | `workspace.manage` |
| Resourcetype        | `account`                                                          | Resource-ID-veld      | `account_id`       |
| Openbare API-route  | `PATCH /v1/public/accounts/{account_id}/workspaces/{workspace_id}` |                       |                    |

<AccordionGroup>
  <Accordion title="Argumenten">
    | Naam           | Type  | Vereist |
    | -------------- | ----- | ------- |
    | `account_id`   | `str` | ja      |
    | `workspace_id` | `str` | ja      |
    | `name`         | `str` | ja      |
  </Accordion>

  <Accordion title="Retourneert">
    | Veld         | Type          | Vereist |
    | ------------ | ------------- | ------- |
    | `account_id` | `str`         | ja      |
    | `id`         | `str`         | ja      |
    | `name`       | `str`         | ja      |
    | `created_at` | `str \| null` | nee     |
    | `status`     | `str`         | nee     |
    | `updated_at` | `str \| null` | nee     |
  </Accordion>

  <Accordion title="A2A-voorbeeld">
    Aanvraag:

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

    Respons:

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

  <Accordion title="MCP-voorbeeld">
    Aanvraag:

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

    Respons:

    ```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\": \"workspaces.update\",\n      \"status\": \"completed\",\n      \"result\": \"<string>\"\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>
