Skip to content

Check Deposit Status

Tip

  • All requests are Post requests, and the data format is json
Brief Description
  • None
Request URL
  • /v1/vexora/kycStatusQuery
Request Method
  • Method: POST
  • Content-Type: application/json
header Required Type Description
merchantNo No String None
Request Body Parameters
Name Required Type Description
sign Yes String sign
timestamp Yes String timestamp
kycNumber Yes String kycNumber
Request Example
{

  "sign": "ac13b9abf95c66ffc4025abaaeeb3a83",
  "timestamp": "1728613488294",
  "kycNumber": "a9buldbpwf156hyh"
}
Successful Response Example
Parameter Required Type Description
msg Yes String Request result (when returning success, it only indicates that the request was successful and cannot be used for merchant-side logic judgment)
code Yes String Request response code (when returning 0000, it only indicates that the request was successful and cannot be used for merchant-side logic judgment). For specific error codes, please refer to the business error code enumeration.
timestamp Yes String Transaction time
success Yes String Transaction result
data Yes Object Return object
data.authenticationStatus Yes String
0-Pending certification
1-Under review
2-Approved
3-Rejected
data.failReason Yes String Error description
{
    "msg": "success",
    "code": "0000",
    "timestamp": 1728609277476,
    "success": true,
    "data": {
        "authenticationStatus": "3",
        "failReason": "The file and type do not match"
    }
}