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

ParameterTypeDescription
userNostringUser number
emailstringUser email
kycStatusstringkyc status
kycStartTimestringkyc start time
callbackUrlstringkyc success webhook url
redirectUrlstringkyc success redirect url

KYC Webhook Description

ParameterDescription
COMPLETEDKYC COMPLETED
REJECTEDKYC 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"
}