Withdrawal Webhook

HTTP Method: POST Endpoint URL: https://your-server/withdrawal Description: Notifies your server about creation or status changes of a withdrawal request. Security: Requires the X-HMAC header.

Request Body (JSON):

{
	"id": "285d8dce-7663-4580-ba7f-8afb2f2d3292",
	"txnId": "0xe7238caa68382485141be0443d6ba7efd0bd9f6bac5a624bd059acc53af1bf1d19",
	"amount": "1.00000000",
	"receivedAmount": "1.00000000",
	"asset": {
		"short": "USDT",
		"name": "Tether",
		"logoUrl": "https://cryptologos.cc/logos/tether-usdt-logo.png",
		"network": "tron"
	},
	"addressTo": "0x5D8D9C7f68A46634BCEaD2a6FF166A0BdFb08540",
	"addressFrom": "0x5D8D9C7f68A46634BCEaD2a6FF166A0BdFb08540",
	"destTag": "optional_tag",
	"status": "OPEN",
	"customer": {
		"id": 12312312,
		"name": "John Dou",
		"email": "[email protected]"
	},
	"merchant": {
		"id": "285d8dce-7663-4580-ba7f-8afb2f2d3292",
		"name": "Company Name",
		"siteUrl": "company.com",
		"logoUrl": "https://example.com/logo.svg",
		"email": "[email protected]"
	},
	"invoice": "INV-001",
	"createdAt": "2017-07-21T17:32:28Z",
	"updatedAt": "2017-07-21T17:32:28Z"
}

Response: HTTP 200 OK with empty body.