⚙️ Получение параметров сессии
Code samples
GET /webapi/kyc/user/{uuid}/params
🛠️ Параметры
| 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": 2,
"session_end": "2023-12-01T10:30:00Z",
"steps": {
"1": { "completed": true },
"2": { "completed": false }
},
"restrictions": {
"countryMode": "whitelist",
"allowedCountries": ["ru", "kz"],
"allowedDocumentTypes": ["passport"]
}
}
🔁 Ответы
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Параметры сессии | KycParams |
| 404 | Not Found | Верификация не найдена | Inline |