GET
/
account
/
{id}
/
daily_balance
curl --request GET \
  --url https://api.treasuryprime.com/account/{id}/daily_balance \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "balance": "255281.00",
      "current_balance": "",
      "date": "2024-02-01"
    },
    {
      "balance": "253361.00",
      "current_balance": "",
      "date": "2022-02-02"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

Account ID

Response

200 - application/json
A list of account.daily_balance elements

The response is of type any.