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

# Выделенные IP

> Управлять инвентарем выделенных IP, авторизацией, удалением и назначениями доменов.

# Выделенные IP

Управлять инвентарем выделенных IP, авторизацией, удалением и назначениями доменов.

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

В примерах используется режим кода A2A. MCP предоставляет тот же режим кода через инструмент `execute`.

## Функции

### `dedicated_ips.authorize`

```text theme={null}
dedicated_ips.authorize(account_id: str, dedicated_ip_id: str, reissue?: bool) -> DedicatedIP
```

Выделенные IP: `dedicated_ips.authorize`.

| Свойство              | Значение                                                                          | Свойство                 | Значение          |
| --------------------- | --------------------------------------------------------------------------------- | ------------------------ | ----------------- |
| Требуемое разрешение  | `proxy.authorize`                                                                 | Требуется аутентификация | `да`              |
| Режим выполнения      | `sync`                                                                            | Возможность              | `proxy.authorize` |
| Тип ресурса           | `account`                                                                         | Поле ID ресурса          | `account_id`      |
| Публичный маршрут API | `POST /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}/authorize` |                          |                   |

<AccordionGroup>
  <Accordion title="Аргументы">
    | Имя               | Тип    | Обязательный |
    | ----------------- | ------ | ------------ |
    | `account_id`      | `str`  | да           |
    | `dedicated_ip_id` | `str`  | да           |
    | `reissue`         | `bool` | нет          |
  </Accordion>

  <Accordion title="Возвращает">
    | Поле           | Тип                                                                                        | Обязательный |
    | -------------- | ------------------------------------------------------------------------------------------ | ------------ |
    | `id`           | `str`                                                                                      | да           |
    | `name`         | `str`                                                                                      | да           |
    | `status`       | `str`                                                                                      | да           |
    | `type`         | `str`                                                                                      | да           |
    | `asn`          | `int \| null`                                                                              | нет          |
    | `country_code` | `str \| null`                                                                              | нет          |
    | `created_at`   | `str \| null`                                                                              | нет          |
    | `ip_addresses` | `[{"ip": str, "fcrdns_confirmed"?: bool, "healthy"?: bool \| null, "rdns"?: str \| null}]` | нет          |
    | `updated_at`   | `str \| null`                                                                              | нет          |
  </Accordion>

  <Accordion title="Пример A2A">
    Запрос:

    ```json theme={null}
    {
      "request_id": "example",
      "session_id": "session_123",
      "code": "dedicated_ips.authorize(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", dedicated_ip_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", reissue=true)"
    }
    ```

    Ответ:

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

  <Accordion title="Пример MCP">
    Запрос:

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

    Ответ:

    ```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\": 123\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"dedicated_ips.authorize\",\n      \"status\": \"completed\",\n      \"result\": 123\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `dedicated_ips.available_options`

```text theme={null}
dedicated_ips.available_options(account_id: str, asn?: str | null, country_code?: str | null) -> list[DedicatedIP]
```

Выделенные IP: `dedicated_ips.available_options`.

| Свойство              | Значение                                                               | Свойство                 | Значение       |
| --------------------- | ---------------------------------------------------------------------- | ------------------------ | -------------- |
| Требуемое разрешение  | `proxy.create`                                                         | Требуется аутентификация | `да`           |
| Режим выполнения      | `sync`                                                                 | Возможность              | `proxy.create` |
| Тип ресурса           | `account`                                                              | Поле ID ресурса          | `account_id`   |
| Публичный маршрут API | `GET /v1/public/accounts/{account_id}/dedicated-ips/available-options` |                          |                |

<AccordionGroup>
  <Accordion title="Аргументы">
    | Имя            | Тип           | Обязательный |
    | -------------- | ------------- | ------------ |
    | `account_id`   | `str`         | да           |
    | `asn`          | `str \| null` | нет          |
    | `country_code` | `str \| null` | нет          |
  </Accordion>

  <Accordion title="Возвращает">
    | Поле           | Тип                                                                                        | Обязательный |
    | -------------- | ------------------------------------------------------------------------------------------ | ------------ |
    | `id`           | `str`                                                                                      | да           |
    | `name`         | `str`                                                                                      | да           |
    | `asn`          | `int \| null`                                                                              | нет          |
    | `country_code` | `str \| null`                                                                              | нет          |
    | `ip_addresses` | `[{"ip": str, "fcrdns_confirmed"?: bool, "healthy"?: bool \| null, "rdns"?: str \| null}]` | нет          |
  </Accordion>

  <Accordion title="Пример A2A">
    Запрос:

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

    Ответ:

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

  <Accordion title="Пример MCP">
    Запрос:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "method": "tools/call",
      "params": {
        "name": "hybridbox_execute",
        "arguments": {
          "code": "dedicated_ips.available_options(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", asn=\"<string>\", country_code=\"<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\": 123\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"dedicated_ips.available_options\",\n      \"status\": \"completed\",\n      \"result\": 123\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `dedicated_ips.claim`

```text theme={null}
dedicated_ips.claim(account_id: str, option_id?: str | null) -> DedicatedIP
```

Выделенные IP: `dedicated_ips.claim`.

| Свойство              | Значение                                                    | Свойство                 | Значение       |
| --------------------- | ----------------------------------------------------------- | ------------------------ | -------------- |
| Требуемое разрешение  | `proxy.create`                                              | Требуется аутентификация | `да`           |
| Режим выполнения      | `sync`                                                      | Возможность              | `proxy.create` |
| Тип ресурса           | `account`                                                   | Поле ID ресурса          | `account_id`   |
| Публичный маршрут API | `POST /v1/public/accounts/{account_id}/dedicated-ips/claim` |                          |                |

<AccordionGroup>
  <Accordion title="Аргументы">
    | Имя          | Тип           | Обязательный |
    | ------------ | ------------- | ------------ |
    | `account_id` | `str`         | да           |
    | `option_id`  | `str \| null` | нет          |
  </Accordion>

  <Accordion title="Возвращает">
    | Поле           | Тип                                                                                        | Обязательный |
    | -------------- | ------------------------------------------------------------------------------------------ | ------------ |
    | `id`           | `str`                                                                                      | да           |
    | `name`         | `str`                                                                                      | да           |
    | `status`       | `str`                                                                                      | да           |
    | `type`         | `str`                                                                                      | да           |
    | `asn`          | `int \| null`                                                                              | нет          |
    | `country_code` | `str \| null`                                                                              | нет          |
    | `created_at`   | `str \| null`                                                                              | нет          |
    | `ip_addresses` | `[{"ip": str, "fcrdns_confirmed"?: bool, "healthy"?: bool \| null, "rdns"?: str \| null}]` | нет          |
    | `updated_at`   | `str \| null`                                                                              | нет          |
  </Accordion>

  <Accordion title="Пример A2A">
    Запрос:

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

    Ответ:

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

  <Accordion title="Пример MCP">
    Запрос:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "method": "tools/call",
      "params": {
        "name": "hybridbox_execute",
        "arguments": {
          "code": "dedicated_ips.claim(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", option_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\": 123\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"dedicated_ips.claim\",\n      \"status\": \"completed\",\n      \"result\": 123\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `dedicated_ips.delete`

```text theme={null}
dedicated_ips.delete(account_id: str, dedicated_ip_id: str, force?: bool) -> DedicatedIP
```

Выделенные IP: `dedicated_ips.delete`.

| Свойство              | Значение                                                                  | Свойство                 | Значение       |
| --------------------- | ------------------------------------------------------------------------- | ------------------------ | -------------- |
| Требуемое разрешение  | `proxy.delete`                                                            | Требуется аутентификация | `да`           |
| Режим выполнения      | `sync`                                                                    | Возможность              | `proxy.delete` |
| Тип ресурса           | `account`                                                                 | Поле ID ресурса          | `account_id`   |
| Публичный маршрут API | `DELETE /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}` |                          |                |

<AccordionGroup>
  <Accordion title="Аргументы">
    | Имя               | Тип    | Обязательный |
    | ----------------- | ------ | ------------ |
    | `account_id`      | `str`  | да           |
    | `dedicated_ip_id` | `str`  | да           |
    | `force`           | `bool` | нет          |
  </Accordion>

  <Accordion title="Возвращает">
    | Поле              | Тип     | Обязательный |
    | ----------------- | ------- | ------------ |
    | `dedicated_ip_id` | `str`   | да           |
    | `domain_ids`      | `[str]` | да           |
  </Accordion>

  <Accordion title="Пример A2A">
    Запрос:

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

    Ответ:

    ```json theme={null}
    {
      "request_id": "example",
      "status": "completed",
      "result": {
        "last_value": {
          "dedicated_ip_id": "<string>",
          "domain_ids": [
            "<string>"
          ]
        }
      },
      "responses": [
        {
          "index": 0,
          "function": "dedicated_ips.delete",
          "status": "completed",
          "result": {
            "dedicated_ip_id": "<string>",
            "domain_ids": [
              "<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": "dedicated_ips.delete(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", dedicated_ip_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", force=true)"
        }
      }
    }
    ```

    Ответ:

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

### `dedicated_ips.domains.assign`

```text theme={null}
dedicated_ips.domains.assign(account_id: str, dedicated_ip_id: str, domain_ids?: [str]) -> DedicatedIP
```

Выделенные IP: `dedicated_ips.domains.assign`.

| Свойство              | Значение                                                                               | Свойство                 | Значение              |
| --------------------- | -------------------------------------------------------------------------------------- | ------------------------ | --------------------- |
| Требуемое разрешение  | `domain.proxy.assign`                                                                  | Требуется аутентификация | `да`                  |
| Режим выполнения      | `sync`                                                                                 | Возможность              | `domain.proxy.assign` |
| Тип ресурса           | `account`                                                                              | Поле ID ресурса          | `account_id`          |
| Публичный маршрут API | `POST /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}/domains/assign` |                          |                       |

<AccordionGroup>
  <Accordion title="Аргументы">
    | Имя               | Тип     | Обязательный |
    | ----------------- | ------- | ------------ |
    | `account_id`      | `str`   | да           |
    | `dedicated_ip_id` | `str`   | да           |
    | `domain_ids`      | `[str]` | нет          |
  </Accordion>

  <Accordion title="Возвращает">
    | Поле              | Тип     | Обязательный |
    | ----------------- | ------- | ------------ |
    | `dedicated_ip_id` | `str`   | да           |
    | `domain_ids`      | `[str]` | да           |
  </Accordion>

  <Accordion title="Пример A2A">
    Запрос:

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

    Ответ:

    ```json theme={null}
    {
      "request_id": "example",
      "status": "completed",
      "result": {
        "last_value": {
          "dedicated_ip_id": "<string>",
          "domain_ids": [
            "<string>"
          ]
        }
      },
      "responses": [
        {
          "index": 0,
          "function": "dedicated_ips.domains.assign",
          "status": "completed",
          "result": {
            "dedicated_ip_id": "<string>",
            "domain_ids": [
              "<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": "dedicated_ips.domains.assign(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", dedicated_ip_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      \"dedicated_ip_id\": \"<string>\",\n      \"domain_ids\": [\n        \"<string>\"\n      ]\n    }\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"dedicated_ips.domains.assign\",\n      \"status\": \"completed\",\n      \"result\": {\n        \"dedicated_ip_id\": \"<string>\",\n        \"domain_ids\": [\n          \"<string>\"\n        ]\n      }\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `dedicated_ips.domains.unassign`

```text theme={null}
dedicated_ips.domains.unassign(account_id: str, dedicated_ip_id: str, domain_ids?: [str]) -> DedicatedIP
```

Выделенные IP: `dedicated_ips.domains.unassign`.

| Свойство              | Значение                                                                                 | Свойство                 | Значение              |
| --------------------- | ---------------------------------------------------------------------------------------- | ------------------------ | --------------------- |
| Требуемое разрешение  | `domain.proxy.assign`                                                                    | Требуется аутентификация | `да`                  |
| Режим выполнения      | `sync`                                                                                   | Возможность              | `domain.proxy.assign` |
| Тип ресурса           | `account`                                                                                | Поле ID ресурса          | `account_id`          |
| Публичный маршрут API | `POST /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}/domains/unassign` |                          |                       |

<AccordionGroup>
  <Accordion title="Аргументы">
    | Имя               | Тип     | Обязательный |
    | ----------------- | ------- | ------------ |
    | `account_id`      | `str`   | да           |
    | `dedicated_ip_id` | `str`   | да           |
    | `domain_ids`      | `[str]` | нет          |
  </Accordion>

  <Accordion title="Возвращает">
    | Поле              | Тип     | Обязательный |
    | ----------------- | ------- | ------------ |
    | `dedicated_ip_id` | `str`   | да           |
    | `domain_ids`      | `[str]` | да           |
  </Accordion>

  <Accordion title="Пример A2A">
    Запрос:

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

    Ответ:

    ```json theme={null}
    {
      "request_id": "example",
      "status": "completed",
      "result": {
        "last_value": {
          "dedicated_ip_id": "<string>",
          "domain_ids": [
            "<string>"
          ]
        }
      },
      "responses": [
        {
          "index": 0,
          "function": "dedicated_ips.domains.unassign",
          "status": "completed",
          "result": {
            "dedicated_ip_id": "<string>",
            "domain_ids": [
              "<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": "dedicated_ips.domains.unassign(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", dedicated_ip_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      \"dedicated_ip_id\": \"<string>\",\n      \"domain_ids\": [\n        \"<string>\"\n      ]\n    }\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"dedicated_ips.domains.unassign\",\n      \"status\": \"completed\",\n      \"result\": {\n        \"dedicated_ip_id\": \"<string>\",\n        \"domain_ids\": [\n          \"<string>\"\n        ]\n      }\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `dedicated_ips.get`

```text theme={null}
dedicated_ips.get(account_id: str, dedicated_ip_id: str) -> DedicatedIP
```

Выделенные IP: `dedicated_ips.get`.

| Свойство              | Значение                                                               | Свойство                 | Значение     |
| --------------------- | ---------------------------------------------------------------------- | ------------------------ | ------------ |
| Требуемое разрешение  | `proxy.view`                                                           | Требуется аутентификация | `да`         |
| Режим выполнения      | `sync`                                                                 | Возможность              | `proxy.view` |
| Тип ресурса           | `account`                                                              | Поле ID ресурса          | `account_id` |
| Публичный маршрут API | `GET /v1/public/accounts/{account_id}/dedicated-ips/{dedicated_ip_id}` |                          |              |

<AccordionGroup>
  <Accordion title="Аргументы">
    | Имя               | Тип   | Обязательный |
    | ----------------- | ----- | ------------ |
    | `account_id`      | `str` | да           |
    | `dedicated_ip_id` | `str` | да           |
  </Accordion>

  <Accordion title="Возвращает">
    | Поле           | Тип                                                                                        | Обязательный |
    | -------------- | ------------------------------------------------------------------------------------------ | ------------ |
    | `id`           | `str`                                                                                      | да           |
    | `name`         | `str`                                                                                      | да           |
    | `status`       | `str`                                                                                      | да           |
    | `type`         | `str`                                                                                      | да           |
    | `asn`          | `int \| null`                                                                              | нет          |
    | `country_code` | `str \| null`                                                                              | нет          |
    | `created_at`   | `str \| null`                                                                              | нет          |
    | `ip_addresses` | `[{"ip": str, "fcrdns_confirmed"?: bool, "healthy"?: bool \| null, "rdns"?: str \| null}]` | нет          |
    | `updated_at`   | `str \| null`                                                                              | нет          |
  </Accordion>

  <Accordion title="Пример A2A">
    Запрос:

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

    Ответ:

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

  <Accordion title="Пример MCP">
    Запрос:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "method": "tools/call",
      "params": {
        "name": "hybridbox_execute",
        "arguments": {
          "code": "dedicated_ips.get(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", dedicated_ip_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\": 123\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"dedicated_ips.get\",\n      \"status\": \"completed\",\n      \"result\": 123\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>

### `dedicated_ips.list`

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

Выделенные IP: `dedicated_ips.list`.

| Свойство              | Значение                                             | Свойство                 | Значение     |
| --------------------- | ---------------------------------------------------- | ------------------------ | ------------ |
| Требуемое разрешение  | `proxy.view`                                         | Требуется аутентификация | `да`         |
| Режим выполнения      | `sync`                                               | Возможность              | `proxy.view` |
| Тип ресурса           | `account`                                            | Поле ID ресурса          | `account_id` |
| Публичный маршрут API | `GET /v1/public/accounts/{account_id}/dedicated-ips` |                          |              |

<AccordionGroup>
  <Accordion title="Аргументы">
    | Имя          | Тип   | Обязательный |
    | ------------ | ----- | ------------ |
    | `account_id` | `str` | да           |
    | `page`       | `int` | нет          |
    | `page_size`  | `int` | нет          |
  </Accordion>

  <Accordion title="Возвращает">
    | Поле        | Тип                                                                                                                                                                                                                                                                            | Обязательный |
    | ----------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------ |
    | `items`     | `[{"id": str, "name": str, "status": str, "type": str, "asn"?: int \| null, "country_code"?: str \| null, "created_at"?: str \| null, "ip_addresses"?: [{"ip": str, "fcrdns_confirmed"?: bool, "healthy"?: bool \| null, "rdns"?: 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": "dedicated_ips.list(account_id=\"3c90c3cc-0d44-4b50-8888-8dd25736052a\", page=123, page_size=123)"
    }
    ```

    Ответ:

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

  <Accordion title="Пример MCP">
    Запрос:

    ```json theme={null}
    {
      "jsonrpc": "2.0",
      "id": "example",
      "method": "tools/call",
      "params": {
        "name": "hybridbox_execute",
        "arguments": {
          "code": "dedicated_ips.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\": 123\n  },\n  \"responses\": [\n    {\n      \"index\": 0,\n      \"function\": \"dedicated_ips.list\",\n      \"status\": \"completed\",\n      \"result\": 123\n    }\n  ],\n  \"complexity_score\": 1\n}"
          }
        ],
        "isError": false
      }
    }
    ```
  </Accordion>
</AccordionGroup>
