Endpoint for receiving webhook events from BlancBlock
Request
Body Params application/jsonRequired
{
"eventId": "string",
"eventType": "ORDER_CREATED",
"timestamp": "2019-08-24T14:15:22.123Z",
"data": {
"orderId": "string",
"merchantId": "string",
"partnerOrderId": "string",
"status": "CREATED",
"amount": {
"value": "string",
"currency": "USDT"
},
"orderType": "DEPOSIT_FIAT"
}
}
Request Code Samples
curl --location '/webhook/blancblock' \
--header 'x-webhook-signature;' \
--header 'x-webhook-id;' \
--header 'x-webhook-timestamp;' \
--header 'x-webhook-event;' \
--header 'x-event-id;' \
--header 'Content-Type: application/json' \
--data '{
"eventId": "string",
"eventType": "ORDER_CREATED",
"timestamp": "2019-08-24T14:15:22.123Z",
"data": {
"orderId": "string",
"merchantId": "string",
"partnerOrderId": "string",
"status": "CREATED",
"amount": {
"value": "string",
"currency": "USDT"
},
"orderType": "DEPOSIT_FIAT"
}
}'
Responses
Webhook processed successfully
This response does not have a body.
Modified at 2025-09-26 03:46:34