Webhooks for the Balance Transfers API

This API supports webhooks. When asynchronous events occur on our side, we can send an HTTP call (webhook) to your application, so you can react to these events in real time.

You can set up webhooks via the dashboard. See the Next-gen Webhooks guide.

The payload of a webhook is always simply a snapshot of the entity, as returned by the GET endpoint.

If you are setting up webhooks via the Webhooks API instead for any of the events below, you will need access to balances.read.

Available webhook events

EventDescription
balance-transaction.createdOccurs when a balance transaction is created to add to your available balance. It currently only supports positive amounts and non-captured payments.

Webhook payload examples

{
  "resource": "connect-balance-transfer",
  "id": "cbtr_nBprRarXeqXi98AXSqCBJ",
  "amount": {
    "value": "12.34",
    "currency": "EUR"
  },
  "source": {
    "type": "organization",
    "id": "org_1",
    "description": "description for source"
  },
  "destination": {
    "type": "organization",
    "id": "org_2",
    "description": "description for destination"
  },
  "description": "Invoice fee #12345",
  "status": "created",
  "statusReason": {
    "code": "request_created",
    "message": "Balance transfer request created."
  },
  "category": "invoice_collection",
  "metadata": {
    "order_id": 12345,
    "customer_id": 9876
  },
  "createdAt": "2025-05-01T10:00:00+00:00",
  "mode": "live"
}