Skip to main content

Events

These are all the event types you can subscribe to.

Account events

EventFired when
account:createdA new account is created
account:updatedAn account is modified
account:frozenAn account is frozen
account:closedAn account is closed

Transaction events

EventFired when
transaction:postedA transfer is posted (finalized)
transaction:pendingA pending transfer is created (funds held)
transaction:voidedA pending transfer is voided (funds released)
transaction:failedA transfer attempt failed

Balance events

EventFired when
balance:updatedAn account's balance changes

Payload format

Every webhook delivery is an HTTP POST with a JSON body.

{
"id": "e5f6a7b8-...",
"type": "transaction:posted",
"tenant_id": "f714f6af-...",
"payload": {
"transfer_id": "a1b2c3d4..."
},
"created_at": "2026-04-06T22:50:00Z"
}

The payload contents vary by event type but always include the relevant resource ID.