2. Get balances (V3)
GET {{host}}/v3/profiles/{{profile-id}}/balances?types=STANDARD
Returns all opened balances for the specified profile.
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 |
Request Params
| Key | Datatype | Required | Description |
|---|---|---|---|
types | string | Use STANDARD |
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},{"id":2,"currency":"GBP","type":"STANDARD","name":null,"icon":null,"amount":{"value":0,"currency":"GBP"},"reservedAmount":{"value":0,"currency":"GBP"},"creationTime":"2020-10-01T12:54:33.584770Z","modificationTime":"2021-06-08T15:50:53.277096Z","visible":true},{"id":3,"currency":"USD","type":"STANDARD","name":null,"icon":null,"amount":{"value":0,"currency":"USD"},"reservedAmount":{"value":0,"currency":"USD"},"creationTime":"2020-08-19T17:29:23.037255Z","modificationTime":"2021-01-07T14:49:35.430092Z","visible":true}]