Webhooks
Batch Notifications
Batch Webhook Structure Data Type: JSON
The webhook payload is delivered in JSON format, a structured data format commonly used for APIs. Each payload includes:
Variable | Type | Description |
---|---|---|
| String | The event will following current progress of this batch. |
| Integer | Batch total amount in cent. |
| String | Currency of this batch. |
| String | Unique ID of the updated batch. |
| String | Status of the current batch progress. |
| Integer | Unix timestamp of the batch running time. |
| String | Reference of this batch. |
| Integer | Actual batch total amount in cent when batch processed. |
| Integer | Total of failed payout records. |
| Integer | Total of payout records. |
| String | Unique ID of the updated batch's subaccount. |
| Integer | Unix timestamp when batch record created. |
| Integer | Unix timestamp of the event. |
Batch Notification Event
Event | Description |
---|---|
batchUpdate | Indicates that batch have been updated in a single operation. |
Batch Notification Status
Status | Description |
---|---|
open | Batch is in the open for new created payout. |
queue | Batch is in the queue, waiting to be processed. |
in_progress | Batch is currently in progress. |
settled | Batch has been successfully settled. |
cancelled | Batch has been cancelled. |
failed | Batch process has failed. |
Example
Last updated