🔄 Update Verification Step
Code samples
POST /webapi/kyc/user/{uuid}/step
Body parameter
{
"step": 2,
"data": {
"someKey": "someValue"
}
}
🛠️ Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| uuid | path | string(uuid) | true | Verification UUID |
| step | body | integer | true | Step number |
| data | body | object | false | Additional step data |
Example responses
200 Response
{
"success": true,
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"status": 1,
"step": 2,
"session_end": "2023-12-01T10:30:00Z",
"steps": {},
"restrictions": {}
}
🔁 Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Step successfully updated | KycParams |
| 404 | Not Found | Verification not found | Inline |
| 422 | Unprocessable Entity | Validation error | Inline |