KYC Webhook
Introduction
KYC user registration webhook, after merchant received webhook, response HTTP code 200 for success or ACH will retry.
API Description
Request Method: POST
Request Path: /**/callback
Response Parameters
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 Webhook Description
Parameter | Description |
---|---|
COMPLETED | KYC COMPLETED |
REJECTED | KYC was submitted but rejected by the compliance department. We are unable to provide services to clients due to regulatory reasons or company policy. |
Response Parameter Example:
{
"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"
}
Updated 1 day ago