Cash Balances

Download Spec

All cash balance related paths

Retrieve an account group's cash balance

get /account_groups/{account_group_id}/payments/cash_balance

Retrieve an account group's cash balance

account_group_id

string

uuid

required

Account group unique identifier.

Response

ExamplesSchema

Response

{
  "account_group_id": "d0fc0305-97b7-4e3b-bddf-66d3c434898c",
  "currency": "EUR",
  "balance": "100.25",
  "locked_for_trading": "10",
  "pending_settlement": "10",
  "available_for_withdrawal": "80",
  "available_for_trading": "80"
}

Cash Balance events

webhook

Cash Balance events

id

string

uuid

required

Event unique identifier

created_at

string

date-time

required

Date and time when the event was created. RFC 3339-5, ISO8601 UTC

type

string

required

Event type

Default
"CASH_BALANCE.UPDATED"
Enum
  • CASH_BALANCE.UPDATED

object

object (object)

required

webhook_id

string

uuid

required

Webhook unique identifier.

Request

{
  "id": "8962b496-8d42-4560-bfab-10490dd1a724",
  "created_at": "2021-07-21T14:10:00.00Z",
  "type": "CASH_BALANCE.UPDATED",
  "object": {
    "account_group_id": "d0fc0305-97b7-4e3b-bddf-66d3c434898c",
    "currency": "EUR",
    "balance": "100.25",
    "locked_for_trading": "10",
    "pending_settlement": "10",
    "available_for_withdrawal": "80",
    "available_for_trading": "80"
  },
  "webhook_id": "9df39835-be87-4243-9018-f2500b39cee6"
}

Response

ExamplesSchema

Request has been processed successfully.

Empty response

Was this page helpful?