GET
/
api
/
payments
/
accounts
/
{accountId}
/
balances
curl --request GET \
  --url http://localhost:55001/api/payments/accounts/{accountId}/balances \
  --header 'Authorization: Bearer <token>'
{
  "cursor": {
    "pageSize": 15,
    "hasMore": false,
    "previous": "YXVsdCBhbmQgYSBtYXhpbXVtIG1heF9yZXN1bHRzLol=",
    "next": "",
    "data": [
      {
        "accountId": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "lastUpdatedAt": "2023-11-07T05:31:56Z",
        "currency": "<string>",
        "asset": "<string>",
        "balance": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

accountId
string
required

The account ID.

Query Parameters

limit
integer

The maximum number of results to return per page.

asset
string

Filter balances by currency. If not specified, all account's balances will be returned.

from
string

Filter balances by date. If not specified, all account's balances will be returned.

to
string

Filter balances by date. If not specified, default will be set to now.

pageSize
integer
default:15

The maximum number of results to return per page.

Required range: 1 <= x <= 1000
cursor
string

Parameter used in pagination requests. Maximum page size is set to 15. Set to the value of next for the next page of results. Set to the value of previous for the previous page of results. No other parameters can be set when this parameter is set.

Example:

"aHR0cHM6Ly9nLnBhZ2UvTmVrby1SYW1lbj9zaGFyZQ=="

sort
string[]

Fields used to sort payments (default is date:desc).

Response

200
application/json

OK

The response is of type object.