▶️ Начало сессии верификации
Code samples
POST /webapi/kyc/user/{uuid}
🛠️ Параметры
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| uuid | path | string(uuid) | true | UUID верификации |
Example responses
200 Response
{
"success": true,
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"start_time": "2023-12-01T10:00:00Z",
"status": 1,
"step": 1,
"session_end": "2023-12-01T10:30:00Z",
"steps": {},
"restrictions": {
"countryMode": "all",
"allowedCountries": [],
"allowedDocumentTypes": []
}
}
🔁 Ответы
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Сессия запущена | KycParams |
| 404 | Not Found | Верификация не найдена | Inline |
📋 Response Schema (KycParams)
| Name | Type | Description |
|---|---|---|
| success | boolean | Успех операции |
| uuid | string(uuid) | UUID верификации |
| start_time | string(date-time) | Время начала сессии |
| status | integer | Статус верификации |
| step | integer | Текущий шаг |
| session_end | string(date-time) | Время окончания сессии |
| steps | object | Данные по шагам |
| restrictions.countryMode | string | Режим ограничения стран |
| restrictions.allowedCountries | string[] | Разрешённые страны |
| restrictions.allowedDocumentTypes | string[] | Разрешённые типы документов |