# Отправка данных верификации

## Отправка данных верификации

<mark style="color:orange;">`POST`</mark> `/verify/claim/<claim-uuid>/identity/`

**Headers**

| Name         | Value                 |
| ------------ | --------------------- |
| Content-Type | `multipart/form-data` |

**Body**

<table><thead><tr><th width="209">Name</th><th width="180.09765625">Type</th><th width="302">Description</th><th data-type="checkbox">Обязательный</th></tr></thead><tbody><tr><td>phone</td><td>string</td><td>Номер телефона</td><td>true</td></tr><tr><td>passport_type</td><td>string</td><td>Тип паспорта</td><td>true</td></tr><tr><td>passport_photo</td><td>image(jpg, png)</td><td>Фотография паспорта</td><td>false</td></tr><tr><td>id_card_one_photo</td><td>image(jpg, png)</td><td>Фотография id карты (первая сторона)</td><td>false</td></tr><tr><td>id_card_two_photo</td><td>image(jpg, png)</td><td>Фотография id карты (вторая сторона)</td><td>false</td></tr><tr><td>registration_photo</td><td>image(jpg, png)</td><td>Фотография регистрации</td><td>false</td></tr><tr><td>selfie_photo</td><td>image(jpg, png)</td><td>Фотография селфи</td><td>true</td></tr><tr><td>address</td><td>string</td><td>Адрес места жительства</td><td>false</td></tr></tbody></table>

```json
//passport_type - какие типы паспортов есть
{
    "rus-internal": "Русский внутренний",
    "foreign": "Заграничный"
}
```

<mark style="color:$warning;">**Фотографии паспорта и id карты можно и обязательно загружать только в таких комбинациях:**</mark>

1. только `passport_photo`
2. только `id_card_one_photo`
3. `id_card_one_photo` и `id_card_two_photo`

<mark style="color:red;">Поле</mark>  <mark style="color:blue;">`address`</mark> <mark style="color:red;">**ОБЯЗАТЕЛЬНО**</mark> <mark style="color:red;"></mark><mark style="color:red;">если тип паспорта</mark> <mark style="color:blue;">`foreign`</mark>

**Response**

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

```json
{
    "verification": "57bfb1da-5176-4d98-b95b-25ab3d4b6a01"
}
```

{% endtab %}

{% tab title="400" %}

```json
//пример
{
    "phone": [
        "Обязательное поле."
    ],
    "passport_type": [
        "Обязательное поле."
    ],
    "selfie_photo": [
        "Ни одного файла не было отправлено."
    ]
}
```

{% 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/zayavki/sozdanie-zayavki/verifikaciya-lichnosti/otpravka-dannykh-verifikacii.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.
