# Реквизиты оплаты

| Статусы | Название | Описание                     |
| ------- | -------- | ---------------------------- |
| pending | Ожидание | Ожидание получение реквизита |
| error   | Ошибка   | Ошибка получения реквизита   |
| done    | Успешно  | Успешное получение реквизита |
| expired | Истекло  | Истекло время оплаты заявки  |

```json
// требование верификации для получения реквизита
{
    // статус получения реквизита
    "status": "pending",
    // список реквизитов
    "requisites": [],
    // список верификаций который необходимо пройти
    // бывают [identity, card] or []
    "verification": [
        "identity"
    ],
    // html инструкци
    "instruction": null,
    // сумма к оплате
    "amount": 2000.0,
    // валюта оплаты
    "currency": "usdt",
    // время на оплату в секундах
    "paymentTime": 1800
}
// ожидание реквизита
{
        // статус получения реквизита
        "status": "pending",
        // список реквизитов
        "requisites": [],
        // список верификаций который необходимо пройти
        // бывают [identity, card] or []
        "verification": [],
        // html инструкция
        "instruction": null,
        // время на оплату в секундах
        "paymentTime": 345345,
        // сумма к оплате
        "amount": 3124.0,
        // валюта оплаты
        "currency": "usdt"
}
// ожидание реквизита
{
        // статус получения реквизита
        "status": "pending",
        // список реквизитов
        "requisites": [],
        // список верификаций который необходимо пройти
        // бывают [identity, card] or []
        "verification": [],
        // html инструкция
        "instruction": null,
        // время на оплату в секундах
        "paymentTime": 345345,
        // сумма к оплате
        "amount": 3124.0,
        // валюта оплаты
        "currency": "usdt"
}
// время оплаты вышло
{
        "status": "expired",
        "requisites": [],
        // список верификаций который необходимо пройти
        // бывают [identity, card] or []
        "verification": [],
        // html инструкция
        "instruction": null,
        "paymentTime": 0,
        "amount": 3124.0,
        // валюта оплаты
        "currency": "usdt"
}

// ошибочное получение реквизитов
{
        "status": "error",
        "requisites": [],
        // список верификаций который необходимо пройти
        // бывают [identity, card] or []
        "verification": [],
        // html инструкция
        "instruction": null,
        "paymentTime": 5456,
        "amount": 3124.0,
        // валюта оплаты
        "currency": "usdt"
}
// успешное получение реквизитов
{
  "amount": 1500.0,
  // валюта оплаты
  "currency": "usdt",
  "status": "done",
  // список верификаций который необходимо пройти
  // бывают [identity, card] or []
  "verification": [],
  // html инструкция
  "instruction": null,
  "paymentTime": 5456,
  "requisites": [
    {
      // название реквизита
      "name": "Реквизит",
      // машинное название
      "alias": "r",
      // кастомные параметры
      "params": {},
      // нужен ли чек оплаты
      "bill_need": true,
      // значение реквизита
      "requisite": "992985425596",
      // обязателен ли чек об оплате
      "bill_required": true
    },
    {
      "name": "ФИО",
      "alias": "fio",
      "params": {},
      "bill_need": true,
      "requisite": "",
      "bill_required": true
    },
    {
      "name": "Банк",
      "alias": "bank",
      "params": {},
      "bill_need": true,
      "requisite": "Банк Васл Банк.Получатель: Махмадаминов К",
      "bill_required": true
    },
    {
      "name": "Страна",
      "alias": "country",
      "params": {},
      "bill_need": true,
      "requisite": "Таджикистан",
      "bill_required": true
    }
  ]
}
```


---

# Agent Instructions: 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:

```
GET https://exchangerretp4lrpg6lp2.mikroservis.one/tipy-dannykh/zayavka/rekvizity-oplaty.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
