v5
latestOpenAPI 3.1.02026-07-262421791.5 MBBalance update
Triggered every time a multi-currency account is credited or debited.
- Event type: balances#update
- Profile level subscriptions: Supported
- Application level subscriptions: Supported
Events may not be delivered in the order they occurred. Use data.occurred_at to reconcile the order, and data.step_id to order events within a single transaction. For tracking events related to a single transaction such as a cancelled card transaction, use data.step_id to reconcile the order. See the Event ordering guide for details.
See the Webhooks guide for setup instructions, signature verification, and best practices.
Headers
RSA-SHA256 signature of the request body, Base64 encoded. Verify this against the Wise public key to ensure the request is authentic and has not been tampered with.
Unique identifier for this webhook delivery attempt.
Present with the value true if this is a test notification sent to verify your callback URL during subscription setup.
Payload
Example payload
{
"schema_version": "4.0.0",
"subscription_id": "f2264fe5-a0f5-4dab-a1b4-6faa87761425",
"event_type": "balances#update",
"sent_at": "2023-03-08T14:55:39.456Z",
"data": {
"resource": {
"type": "balance-account",
"id": 2,
"profile_id": 2
},
"amount": 70,
"balance_id": 111,
"channel_name": "TRANSFER",
"currency": "GBP",
"occurred_at": "2023-03-08T14:55:38.123Z",
"post_transaction_balance_amount": 88.93,
"step_id": 1234567,
"transaction_type": "credit",
"transfer_reference": "BNK-1234567"
}
}Response
Return any 2xx status to acknowledge receipt of the event.
Example response
{
"status": "ok"
}