POST
/
dashboard
/
total-balance
/
aggregates
curl --request POST \
  --url https://gateway.varchev.com/wallet/dashboard/total-balance/aggregates \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "walletId": "<string>",
  "overview": [
    "<string>"
  ],
  "inTermsOf": "EUR"
}'
{
  "totalBalance": 123,
  "twentyFourHourPercentage": 123,
  "twentyFourHourChange": 123,
  "totalBalanceByAssets": {
    "labels": [
      "<string>"
    ],
    "data": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Headers

tenantId
string

Tenant Id

Body

application/json

Response

200 - application/json

Get Total Balance Aggregate

The response is of type object.