Deposit Status Webhook
Obsolete
To update deposit status。
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"eventType": "string",
"notificationId": "string",
"data": {
"paymentId": "string",
"txHash": "string",
"fromAddress": "string",
"toAddress": "string",
"network": "string",
"currency": "string",
"participantCode": "string",
"kytOutcome": "string",
"totalValue": "string",
"receivedCurrency": "string",
"updateAt": "string",
"details": "string",
"message": "string",
"additionalInfo": "string",
"status": "0"
}
}
Request Code Samples
curl --location --request POST 'https://your-api-server.com' \
--header 'X-Signature: t=1758867971711,v0=b2468f1bc285eb64be242ee6d02e3c959dfb61482abe47ddb50da4b6be55997e' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"eventType": "string",
"notificationId": "string",
"data": {
"paymentId": "string",
"txHash": "string",
"fromAddress": "string",
"toAddress": "string",
"network": "string",
"currency": "string",
"participantCode": "string",
"kytOutcome": "string",
"totalValue": "string",
"receivedCurrency": "string",
"updateAt": "string",
"details": "string",
"message": "string",
"additionalInfo": "string",
"status": "0"
}
}'
Responses
application/json Modified at 2026-01-20 08:32:59