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.
Transaction Types
Depending on the transaction within the data object you may see
deposit
: For a payment received via card, mobile money, or bank.withdrawal
: For a payout sent out to a user from your balance.
Updated 3 months ago