Webhook Notification Example
Webhook Notification Structure#
When you receive a webhook notification, it will contain the following information in the request body:Content-Type: application/json
{
"hash": "2deb110b57bfac9d72c14d4ed9622233",
"transactionId": "226a3e3aebfc859cb407c9eddf2e2679",
"destination": "+584146783743",
"amount": "20.00",
"price": "1.67",
"status": "SENT",
"hasError": false,
"operatorReference": "0000266256",
"sentAt": "2024-02-05T03:45:10.000Z",
"useWebhook": true,
"webhookUrl": "http://127.0.0.1:3503/v2.1/webhook"
}
Upon receiving this information, you should take appropriate actions on your end. You can track the transaction using either the "hash" (the same one you provided when making the request) or the "transactionId," which is our unique identifier for this transaction.Modified at 2025-01-15 02:33:35