1.
Notification of the customer's KYC review result. If the KYC information and liveness authentication are failed, the customer can resubmit it.
2.
After successful receipt, a confirmation must be returned synchronously, for example {"code": "200","msg": "Received successfully"};
3.
In general, the final review notification result will be called back within 1 working day;
Request
Body Params application/json
{
"eventType": "Kyc",
"userCode": "xxx",
"auditState": "1",
"auditRemark": "Authentication (KYC) has passed"
}
Request samples
curl --location --request POST 'https://api-test.tevaupay.com' \
--header 'x-nexus-api-key;' \
--header 'versions;' \
--header 'appId;' \
--header 'timestamp;' \
--header 'nonce;' \
--header 'sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
"eventType": "Kyc",
"userCode": "xxx",
"auditState": "1",
"auditRemark": "Authentication (KYC) has passed"
}'
Responses
application/json {
"code": "200",
"msg": "Received successfully"
}
Modified at 2025-07-29 02:58:57