Skip to main content
This webhook is sent when an account balance has been updated.

Webhook Structure

id
string (UUID)
required
Unique identifier for this event
time
string (ISO 8601)
required
Timestamp of when the event occurred
type
string
required
The type of event. Value: account.balance-updated
data
object
required
The event data containing the details below

Data Fields

data.accountId
string (UUID)
required
Unique identifier of the account whose balance was updated
data.balances
array
required
List of account balances

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"
      }
    ]
  }
}
Last modified on March 25, 2026