Skip to content

Webhook

Tip

  • All requests are Post requests, and the data format is json
Brief Description
  • This document describes the asynchronous notification to merchants. When a transaction (payout, payin) has a result, the result will be posted to the URL reported by the merchant. The merchant must respond with OK after processing the transaction result. If the platform request fails, it will notify the merchant 8 times within 24 hours according to a specific rule: 2s/5s/10s/30s/1h/3h/3h/3h. If the merchant still does not receive the result successfully, they can actively query the result through the query interface.

  • If the merchant's request has IP restrictions, please inform us.

Request Method
  • Method: POST
  • Content-Type: application/json
Request Parameters
Name Required Type Description
authenticationStatus Yes String
0-Pending certification
1-Under review
2-Approved
3-Rejected
sign Yes String sign
timestamp Yes String timestamp
kycNumber Yes String kycNumber
Request Example
{
   "kycNumber": "1996888899069603841",
   "authenticationStatus": "2",
   "timestamp": "1724740395968",
   "sign": "12222222222"
}
Respone Result
OK