Query KYC Status
Introduction
KYC user registration status query.
API Description
Request Method: POST
Request Path: open/api/kyc/getKycStatus
Request Parameters
Response Parameters
Body Parameters:
| Parameter | Type | Description |
|---|---|---|
| success | boolean | success |
| error | boolean | error |
| code | long | return code |
| msg | string | return message |
| traceId | string | traceId |
| model | object | response entity |
Model Entity Description
| Parameter | Type | Description |
|---|---|---|
| userNo | string | User number |
| string | User email | |
| kycStatus | string | kyc status |
| kycStartTime | string | kyc start time |
| callbackUrl | string | kyc success webhook url |
| redirectUrl | string | kyc success redirect url |
KYC Status Description
| Parameter | Description |
|---|---|
| PENDING | Processing |
| COMPLETED | KYC success |
| REJECTED | KYC failed |
Response Parameter Example:
{
"code": "0",
"msg": "SUCCESS",
"model": {
"userNo": "500417494499129131050",
"email": "[email protected]",
"kycStatus": "COMPLETED",
"kycStartTime": "2025-06-09 17:41:53",
"redirectUrl": "https://card.alchemypay.org/web3auth",
"callbackUrl": "https://card-api.alchemypay.org/kyc/callback"
},
"traceId": "665597457b9b37cb000187a035002030",
"success": true,
"error": false
}
Updated 4 months ago