Event Types & Structures
Base Webhook Structure
All webhooks follow this base structure:
{
"event": "string",
"data": {
// Event specific data
},
"timestamp": "ISO-8601 timestamp"
}
Event Types
transaction_created
: This is when a transaction has been created.transaction_updated
: This is when a transaction's status has changed.
Updated 3 months ago