> For the complete documentation index, see [llms.txt](https://docs.iexexchanger.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.iexexchanger.com/get-started/exchanger-api/spravochnik/scopes.md).

# Scopes и права ключа

Scopes ограничивают, что API-ключ может делать. Выдавайте ключу только те права, которые нужны конкретной интеграции.

## Клиент и платформа

| Scope                    | Что разрешает                                |
| ------------------------ | -------------------------------------------- |
| `public-api:client:read` | Читать профиль клиента.                      |
| `client:balance:read`    | Читать баланс клиента, если баланс доступен. |
| `client:health:read`     | Проверять состояние API-доступа клиента.     |
| `usage:read`             | Читать usage, лимиты и квоты.                |
| `contracts:read`         | Читать контракты API.                        |
| `schemas:read`           | Читать схемы API.                            |
| `scopes:read`            | Читать список доступных scopes.              |

## Заявки

| Scope                  | Что разрешает                      |
| ---------------------- | ---------------------------------- |
| `orders:read`          | Читать список заявок.              |
| `orders:detail:read`   | Читать одну заявку.                |
| `orders:statuses:read` | Читать справочник статусов заявок. |

## Обмен

| Scope                          | Что разрешает                                               |
| ------------------------------ | ----------------------------------------------------------- |
| `exchange:routes:read`         | Читать платежные системы, направления и детали направления. |
| `exchange:capabilities:read`   | Читать возможности направления.                             |
| `exchange:quotes:read`         | Рассчитывать quote.                                         |
| `exchange:preflight:read`      | Проверять заявку через preflight.                           |
| `exchange:orders:create`       | Создавать заявки.                                           |
| `exchange:orders:confirm`      | Подтверждать оплату заявки.                                 |
| `exchange:orders:cancel`       | Отменять заявки.                                            |
| `exchange:orders:actions:read` | Читать доступные действия по заявке.                        |

## Файлы и проверки

| Scope                 | Что разрешает                             |
| --------------------- | ----------------------------------------- |
| `files:read`          | Читать состояние upload intent.           |
| `files:write`         | Создавать upload intent и загружать файл. |
| `verifications:read`  | Читать требования и статусы проверок.     |
| `verifications:write` | Отправлять identity/card verification.    |

## Webhooks

| Scope                       | Что разрешает                                                   |
| --------------------------- | --------------------------------------------------------------- |
| `webhooks:read`             | Читать webhook endpoints.                                       |
| `webhooks:write`            | Создавать, изменять, удалять webhook endpoints и менять secret. |
| `webhooks:deliveries:read`  | Читать события и доставки webhook.                              |
| `webhooks:deliveries:retry` | Повторно отправлять webhook delivery.                           |

## Партнерка

| Scope                     | Что разрешает                  |
| ------------------------- | ------------------------------ |
| `partner:read`            | Читать партнерскую сводку.     |
| `partner:referrals:read`  | Читать рефералов.              |
| `partner:exchanges:read`  | Читать партнерские обмены.     |
| `partner:payouts:read`    | Читать партнерские выплаты.    |
| `partner:statistics:read` | Читать партнерскую статистику. |

## Отзывы

| Scope           | Что разрешает    |
| --------------- | ---------------- |
| `reviews:read`  | Читать отзывы.   |
| `reviews:write` | Создавать отзыв. |

## Sandbox

| Scope         | Что разрешает                       |
| ------------- | ----------------------------------- |
| `sandbox:run` | Запускать sandbox-симуляцию заявки. |

## Готовые наборы прав

| Интеграция                           | Scopes                                                                                                                                                  |
| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
| CRM только для чтения                | `orders:read`, `orders:detail:read`, `orders:statuses:read`, `client:health:read`                                                                       |
| Форма обмена                         | `exchange:routes:read`, `exchange:capabilities:read`, `exchange:quotes:read`, `exchange:preflight:read`, `exchange:orders:create`, `orders:detail:read` |
| Форма обмена с подтверждением оплаты | Scopes формы обмена плюс `exchange:orders:confirm`, `exchange:orders:actions:read`                                                                      |
| Управление webhooks                  | `webhooks:read`, `webhooks:write`, `webhooks:deliveries:read`                                                                                           |
| Партнерский кабинет                  | `partner:read`, `partner:statistics:read`, `partner:referrals:read`, `partner:exchanges:read`, `partner:payouts:read`                                   |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.iexexchanger.com/get-started/exchanger-api/spravochnik/scopes.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
