⚙️ Get Session Parameters
Code samples
GET /webapi/kyc/user/{uuid}/params
🛠️ Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| uuid | path | string(uuid) | true | Verification 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"]
}
}
🔁 Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Session parameters | KycParams |
| 404 | Not Found | Verification not found | Inline |