📋 Get KYC Verification Details
Code samples
GET /webapi/kyc/user/{uuid}
🛠️ Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| uuid | path | string(uuid) | true | Verification UUID |
Example responses
200 Response
{
"success": true,
"images": {
"selfie_0": {
"image": "data:image/png;base64,...",
"info": {
"age": 30,
"gender": "male",
"confidence": 0.98
}
},
"document": {
"image": "data:image/png;base64,...",
"info": {}
}
}
}
🔁 Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 200 | OK | Verification details with images | Inline |
| 401 | Unauthorized | Unauthorized | Inline |
| 404 | Not Found | Verification not found | Inline |
📋 Response Schema
| Name | Type | Description |
|---|---|---|
| success | boolean | Operation success |
| images | object | Map of images |
| images.*.image | string | Image in base64 |
| images.*.info | object | Face detection information |