6.5. Account Balances Retrieval
6.5.1.1. Request
GET http://localhost:18080/v1/accounts/account_rsc1/balances6.5.1.2. No specific headers
6.5.1.3. No body data
6.5.2. Response
Status code: 200
6.5.2.1. Headers
X-Request-Id: cb7ba8b4-63b5-41e9-871c-0dc02c08163e
Keep-Alive: timeout=60
Connection: keep-alive6.5.3. Body
{
"balances": [
{
"name": "Solde comptable au 12/01/2017",
"balanceAmount": {
"amount": 123.45,
"currency": "EUR"
},
"balanceType": "CLBD",
"lastCommittedTransaction": "A452CH"
},
{
"name": "Solde instantané au 12/01/2017 20:13",
"balanceAmount": {
"amount": 105.65,
"currency": "EUR"
},
"balanceType": "XPCD",
"lastCommittedTransaction": "A452D0"
}
],
"_links": {
"self": {
"href": "/v1/accounts/account_rsc1/balances"
},
"parent-list": {
"href": "/v1/accounts"
},
"owners": {
"href": "/v1/accounts/account_rsc1/owners"
},
"transactions": {
"href": "/v1/accounts/account_rsc1/transactions"
},
"overdrafts": {
"href": "/v1/accounts/account_rsc1/overdrafts"
}
}
}