Crypto Collection Wallet Webhook
Developing
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": {
"walletKey": "string",
"addressList": [
{
"blockchain": "string",
"address": "string",
"acceptableCurrencies": [
"string"
]
}
],
"status": 1,
"statusInfo": "string",
"expiry": 1735440000000
}
}
Request Code Samples
curl --location --request POST 'https://your-api-server.com' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"eventType": "string",
"notificationId": "string",
"data": {
"walletKey": "string",
"addressList": [
{
"blockchain": "string",
"address": "string",
"acceptableCurrencies": [
"string"
]
}
],
"status": 1,
"statusInfo": "string",
"expiry": 1735440000000
}
}'
Responses
application/json Modified at 2026-01-20 07:34:16