Skip to main content

PagedAccountBalanceResponse

meta objectrequired

meta data

skipnumber

number of skip records

Default value: 0
Example: 0
limitnumber

number of maximum return records

Default value: 10
Example: 10
totalCountnumberrequired

total number of records

Example: 100
timestampstring<date-time>required

the time of the query result

data object[]required

records

  • Array [
  • idstringrequired

    id of the balance

    Example: c980479e-6254-4d98-a2d0-cbfe4c8f2d35
    clientIdstringrequired

    ID of the client to which the balance belongs

    Example: 401f4647-8372-495f-8de0-aafb3e1eaf93
    currencyCodestringrequired

    Three letters currency code

    Example: AUD
    balancenumberrequired

    Balance

    Example: 1232.21
    createdTimestringrequired

    The creation time of the balance

    Example: 2025-07-08T03:23:45.000Z
  • ]
  • PagedAccountBalanceResponse
    {
    "meta": {
    "skip": 0,
    "limit": 10,
    "totalCount": 100,
    "timestamp": "2024-07-29T15:51:28.071Z"
    },
    "data": [
    {
    "id": "c980479e-6254-4d98-a2d0-cbfe4c8f2d35",
    "clientId": "401f4647-8372-495f-8de0-aafb3e1eaf93",
    "currencyCode": "AUD",
    "balance": "1232.21",
    "createdTime": "2025-07-08T03:23:45.000Z"
    }
    ]
    }