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

# الوسوم

> إدارة وسوم الموارد وتعيينات الوسوم.

# الوسوم

إدارة وسوم الموارد وتعيينات الوسوم.

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

تستخدم الأمثلة وضع الكود في A2A. يتيح MCP وضع الكود نفسه عبر أداة `execute`.

## الوظائف

### `tags.add`

```text theme={null}
tags.add(account_id: str, tag_name: str, color_hex?: str, description?: str | null) -> Tag
```

الوسوم: `tags.add`.

| الخاصية        | القيمة                                       | الخاصية         | القيمة       |
| -------------- | -------------------------------------------- | --------------- | ------------ |
| الإذن المطلوب  | `tag.manage`                                 | المصادقة مطلوبة | `نعم`        |
| وضع التنفيذ    | `sync`                                       | الصلاحية        | `tag.manage` |
| نوع المورد     | `account`                                    | حقل معرف المورد | `account_id` |
| مسار API العام | `POST /v1/public/accounts/{account_id}/tags` |                 |              |

<AccordionGroup>
  <Accordion title="الوسيطات">
    | الاسم         | النوع         | مطلوب |
    | ------------- | ------------- | ----- |
    | `account_id`  | `str`         | نعم   |
    | `tag_name`    | `str`         | نعم   |
    | `color_hex`   | `str`         | لا    |
    | `description` | `str \| null` | لا    |
  </Accordion>

  <Accordion title="القيم المرجعة">
    | الحقل         | النوع         | مطلوب |
    | ------------- | ------------- | ----- |
    | `color_hex`   | `str`         | نعم   |
    | `id`          | `str`         | نعم   |
    | `name`        | `str`         | نعم   |
    | `created_at`  | `str \| null` | لا    |
    | `description` | `str \| null` | لا    |
    | `updated_at`  | `str \| null` | لا    |
  </Accordion>

  <Accordion title="مثال A2A">
    الطلب:

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

    الاستجابة:

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

  <Accordion title="مثال MCP">
    الطلب:

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

    الاستجابة:

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

### `tags.delete`

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

الوسوم: `tags.delete`.

| الخاصية        | القيمة                                                  | الخاصية         | القيمة       |
| -------------- | ------------------------------------------------------- | --------------- | ------------ |
| الإذن المطلوب  | `tag.manage`                                            | المصادقة مطلوبة | `نعم`        |
| وضع التنفيذ    | `sync`                                                  | الصلاحية        | `tag.manage` |
| نوع المورد     | `account`                                               | حقل معرف المورد | `account_id` |
| مسار API العام | `DELETE /v1/public/accounts/{account_id}/tags/{tag_id}` |                 |              |

<AccordionGroup>
  <Accordion title="الوسيطات">
    | الاسم        | النوع | مطلوب |
    | ------------ | ----- | ----- |
    | `account_id` | `str` | نعم   |
    | `tag_id`     | `str` | نعم   |
  </Accordion>

  <Accordion title="القيم المرجعة">
    | الحقل    | النوع | مطلوب |
    | -------- | ----- | ----- |
    | `result` | `{}`  | نعم   |
  </Accordion>

  <Accordion title="مثال A2A">
    الطلب:

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

    الاستجابة:

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

  <Accordion title="مثال MCP">
    الطلب:

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

    الاستجابة:

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

### `tags.domains.assign`

```text theme={null}
tags.domains.assign(account_id: str, tag_id: str, domain_ids: [str]) -> Tag
```

الوسوم: `tags.domains.assign`.

| الخاصية        | القيمة                                                               | الخاصية         | القيمة       |
| -------------- | -------------------------------------------------------------------- | --------------- | ------------ |
| الإذن المطلوب  | `tag.manage`                                                         | المصادقة مطلوبة | `نعم`        |
| وضع التنفيذ    | `sync`                                                               | الصلاحية        | `tag.manage` |
| نوع المورد     | `account`                                                            | حقل معرف المورد | `account_id` |
| مسار API العام | `POST /v1/public/accounts/{account_id}/tags/{tag_id}/domains/assign` |                 |              |

<AccordionGroup>
  <Accordion title="الوسيطات">
    | الاسم        | النوع   | مطلوب |
    | ------------ | ------- | ----- |
    | `account_id` | `str`   | نعم   |
    | `tag_id`     | `str`   | نعم   |
    | `domain_ids` | `[str]` | نعم   |
  </Accordion>

  <Accordion title="القيم المرجعة">
    | الحقل        | النوع   | مطلوب |
    | ------------ | ------- | ----- |
    | `domain_ids` | `[str]` | نعم   |
    | `tag_id`     | `str`   | نعم   |
  </Accordion>

  <Accordion title="مثال A2A">
    الطلب:

    ```json theme={null}
    {
      "request_id": "example",
      "session_id": "session_123",
      "code": "tags.domains.assign(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain_ids=\"example.com\")"
    }
    ```

    الاستجابة:

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

  <Accordion title="مثال MCP">
    الطلب:

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

    الاستجابة:

    ```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      \"domain_ids\": [\n        \"<string>\"\n      ],\n      \"tag_id\": \"<string>\"\n    }\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"tags.domains.assign\",\n      \"status\": \"completed\",\n      \"result\": {\n        \"domain_ids\": [\n          \"<string>\"\n        ],\n        \"tag_id\": \"<string>\"\n      }\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `tags.domains.unassign`

```text theme={null}
tags.domains.unassign(account_id: str, tag_id: str, domain_ids: [str]) -> {}
```

الوسوم: `tags.domains.unassign`.

| الخاصية        | القيمة                                                                 | الخاصية         | القيمة       |
| -------------- | ---------------------------------------------------------------------- | --------------- | ------------ |
| الإذن المطلوب  | `tag.manage`                                                           | المصادقة مطلوبة | `نعم`        |
| وضع التنفيذ    | `sync`                                                                 | الصلاحية        | `tag.manage` |
| نوع المورد     | `account`                                                              | حقل معرف المورد | `account_id` |
| مسار API العام | `POST /v1/public/accounts/{account_id}/tags/{tag_id}/domains/unassign` |                 |              |

<AccordionGroup>
  <Accordion title="الوسيطات">
    | الاسم        | النوع   | مطلوب |
    | ------------ | ------- | ----- |
    | `account_id` | `str`   | نعم   |
    | `tag_id`     | `str`   | نعم   |
    | `domain_ids` | `[str]` | نعم   |
  </Accordion>

  <Accordion title="القيم المرجعة">
    | الحقل    | النوع | مطلوب |
    | -------- | ----- | ----- |
    | `result` | `{}`  | نعم   |
  </Accordion>

  <Accordion title="مثال A2A">
    الطلب:

    ```json theme={null}
    {
      "request_id": "example",
      "session_id": "session_123",
      "code": "tags.domains.unassign(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", tag_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", domain_ids=\"example.com\")"
    }
    ```

    الاستجابة:

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

  <Accordion title="مثال MCP">
    الطلب:

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

    الاستجابة:

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

### `tags.list`

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

الوسوم: `tags.list`.

| الخاصية        | القيمة                                      | الخاصية         | القيمة       |
| -------------- | ------------------------------------------- | --------------- | ------------ |
| الإذن المطلوب  | `tag.view`                                  | المصادقة مطلوبة | `نعم`        |
| وضع التنفيذ    | `sync`                                      | الصلاحية        | `tag.view`   |
| نوع المورد     | `account`                                   | حقل معرف المورد | `account_id` |
| مسار API العام | `GET /v1/public/accounts/{account_id}/tags` |                 |              |

<AccordionGroup>
  <Accordion title="الوسيطات">
    | الاسم        | النوع | مطلوب |
    | ------------ | ----- | ----- |
    | `account_id` | `str` | نعم   |
    | `page`       | `int` | لا    |
    | `page_size`  | `int` | لا    |
  </Accordion>

  <Accordion title="القيم المرجعة">
    | الحقل       | النوع                                                                                                                               | مطلوب |
    | ----------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----- |
    | `items`     | `[{"color_hex": str, "id": str, "name": str, "created_at"?: str \| null, "description"?: str \| null, "updated_at"?: str \| null}]` | نعم   |
    | `page`      | `int`                                                                                                                               | نعم   |
    | `page_size` | `int`                                                                                                                               | نعم   |
    | `total`     | `int`                                                                                                                               | نعم   |
  </Accordion>

  <Accordion title="مثال A2A">
    الطلب:

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

    الاستجابة:

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

  <Accordion title="مثال MCP">
    الطلب:

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

    الاستجابة:

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

### `tags.update`

```text theme={null}
tags.update(account_id: str, tag_id: str, color_hex?: str | null, description?: str | null, tag_name?: str | null) -> Tag
```

الوسوم: `tags.update`.

| الخاصية        | القيمة                                                 | الخاصية         | القيمة       |
| -------------- | ------------------------------------------------------ | --------------- | ------------ |
| الإذن المطلوب  | `tag.manage`                                           | المصادقة مطلوبة | `نعم`        |
| وضع التنفيذ    | `sync`                                                 | الصلاحية        | `tag.manage` |
| نوع المورد     | `account`                                              | حقل معرف المورد | `account_id` |
| مسار API العام | `PATCH /v1/public/accounts/{account_id}/tags/{tag_id}` |                 |              |

<AccordionGroup>
  <Accordion title="الوسيطات">
    | الاسم         | النوع         | مطلوب |
    | ------------- | ------------- | ----- |
    | `account_id`  | `str`         | نعم   |
    | `tag_id`      | `str`         | نعم   |
    | `color_hex`   | `str \| null` | لا    |
    | `description` | `str \| null` | لا    |
    | `tag_name`    | `str \| null` | لا    |
  </Accordion>

  <Accordion title="القيم المرجعة">
    | الحقل         | النوع         | مطلوب |
    | ------------- | ------------- | ----- |
    | `color_hex`   | `str`         | نعم   |
    | `id`          | `str`         | نعم   |
    | `name`        | `str`         | نعم   |
    | `created_at`  | `str \| null` | لا    |
    | `description` | `str \| null` | لا    |
    | `updated_at`  | `str \| null` | لا    |
  </Accordion>

  <Accordion title="مثال A2A">
    الطلب:

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

    الاستجابة:

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

  <Accordion title="مثال MCP">
    الطلب:

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

    الاستجابة:

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