This webhook is sent when an account balance has been updated.
Webhook Structure
Unique identifier for this event
time
string (ISO 8601)
required
Timestamp of when the event occurred
The type of event. Value: account.balance-updated
The event data containing the details below
Data Fields
Unique identifier of the account whose balance was updated
List of account balancesShow Balance object properties
Available balance in minor units (cents)
Currency code (ISO 4217). Available values: EUR
Request Example
{
"id": "019cfb29-433e-7c76-9744-2557d47f46e0",
"time": "2025-01-15T10:30:00Z",
"type": "account.balance-updated",
"data": {
"accountId": "019cde45-3aa7-7ed2-42dc-ea9dbef6f8c0",
"balances": [
{
"availableBalance": 1500000,
"currency": "EUR"
}
]
}
}