# Отправка фото верификации

## Отправка фото верификации для заявки

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

**Headers**

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

**Body**

<table><thead><tr><th width="209">Name</th><th width="73">Type</th><th width="302">Description</th><th data-type="checkbox">Обязательный</th></tr></thead><tbody><tr><td>image</td><td>file</td><td>Изображение (&#x3C;=10мб)</td><td>true</td></tr><tr><td>type_of_verification</td><td>int</td><td>ID типа верификации</td><td>false</td></tr><tr><td>is_linked_to_account</td><td>bool</td><td>Привязать ли карту к аккаунту</td><td>false</td></tr><tr><td>save_requisites</td><td>bool</td><td>Сохранятся ли реквизиты для заполнения заявки, по дефолту <code>false</code></td><td>false</td></tr></tbody></table>

**Response**

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

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

{% endtab %}

{% tab title="400" %}

```json
{
    "image": [
        "Ни одного файла не было отправлено."
    ]
}
// или
{
// typeOfVerification отправляется snake_case, ошибка camelCase из особенностей multipart/form-data django
    "typeOfVerification": [
        "Неверный тип верификации"
    ],
    "image": [
        "Загрузите правильное изображение. Файл, который вы загрузили, поврежден или не является изображением."
    ]
}
```

{% 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-zayavki/otpravka-foto-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.
