# Информация о платежных системах

## Информация о платежных системах

<mark style="color:green;">`GET`</mark> `/verify/inputs/`

Список платежных систем для верификации

**Permissions**

Нужно чтобы пользователь [<mark style="color:blue;">**активировал**</mark>](/lichnyi-kabinet/informaciya-o-polzovatele.md) свой аккаунт

**Headers**

| Name          | Value               |
| ------------- | ------------------- |
| Content-Type  | `application/json`  |
| Authorization | `Bearer <jwttoken>` |

#### Описание полей ответа

В ответе приходит список [платежных систем](/tipy-dannykh/platezhnaya-sistema.md)

**Response**

{% tabs %}
{% tab title="200" %}

```json
// возвращается полный список, пагинация не нужна
{
    "count": 45,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 18,
            "name": "Тинькофф",
            "logoWithBackground": "http://127.0.0.1:8000/media/pslogo/tinkoff-color.svg",
            "logoWhite": "http://127.0.0.1:8000/media/pslogo/tinkoff-white.svg",
            "logoSimple": "http://127.0.0.1:8000/media/pslogo/tinkoff.svg",
            "currency": "rub",
            "inputs": [
                {
                    "type": "text",
                    "name": "fio",
                    "send": {
                        "header": "",
                        "placeholder": "ФИО отправителя",
                        "error": "Введите ФИО отправителя",
                        "visible": true,
                        "algValidate": false
                    },
                    "receive": {
                        "header": "",
                        "placeholder": "ФИО получателя",
                        "error": "Введите ФИО получателя",
                        "visible": true,
                        "algValidate": false
                    },
                    "optionList": [],
                    "regex": "^[а-яa-zА-ЯA-ZёЁ\\-\\s]{1,}$"
                },
                {
                    "type": "number",
                    "name": "card",
                    "send": {
                        "header": "",
                        "placeholder": "Карта Тинькофф, от 16 до 18 цифр",
                        "error": "Введите карту Тинькофф, от 16 до 18 цифр без пробелов",
                        "visible": true,
                        "algValidate": false
                    },
                    "receive": {
                        "header": "",
                        "placeholder": "Карта Тинькофф, от 16 до 18 цифр",
                        "error": "Введите карту Тинькофф, от 16 до 18 цифр без пробелов",
                        "visible": true,
                        "algValidate": false
                    },
                    "optionList": [],
                    "regex": "^[0-9]{16,18}$"
                }
            ]
        },
        ...
    ]
}
```

{% endtab %}
{% endtabs %}


---

# 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/lichnyi-kabinet/verifikaciya-kart/informaciya-o-platezhnykh-sistemakh.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.
