2.1 Get balance by id (V3)
GET {{host}}/v3/profiles/{{profile-id}}/balances/{{balance-id}}
Returns the specified balance id.
Response Body
| Field | Description | Format |
|---|---|---|
| id | balance id | integer |
| currency | balance currency (ISO 4217 Alphabetic Code) | text |
| type | balance type (standard, savings) | text |
| name | balance name | text |
| icon | emoji string | text |
| amount.value | Available balance value that can be used to fund transfers | decimal |
| amount.currency | balance currency (ISO 4217 Alphabetic Code) | text |
| reservedAmount.value | IGNORE | |
| reservedAmount.currency | IGNORE | |
| creationTime | date when balance was created | timestamp |
| modificationTime | date when balance was last modified | timestamp |
| visible | if balance is visible for the user or not | boolean |
HEADERS
| Key | Datatype | Required | Description |
|---|---|---|---|
Authorization | string | Your access token |
RESPONSES
status: OK
{"id":1,"currency":"EUR","type":"STANDARD","name":null,"icon":null,"amount":{"value":0,"currency":"EUR"},"reservedAmount":{"value":0,"currency":"EUR"},"creationTime":"2019-05-05T10:22:49.487533Z","modificationTime":"2021-06-14T11:10:41.055317Z","visible":true}