Body of the response for a successful read balance for an account request.
| name | data type | constraints | description |
|---|---|---|---|
| account | AccountReference | Get account | |
| balances | array of Balance | required | A list of balances regarding this account, e.g. the current balance, the last booked balance. The list might be restricted to the current balance. |
Example
{
"account" : {
"iban" : "...",
"bban" : "...",
"pan" : "...",
"maskedPan" : "...",
"msisdn" : "...",
"currency" : "..."
},
"balances" : [ {
"balanceAmount" : {
"currency" : "...",
"amount" : "..."
},
"balanceType" : "INTERIMAVAILABLE",
"creditLimitIncluded" : true,
"lastChangeDateTime" : "...",
"referenceDate" : "...",
"lastCommittedTransaction" : "..."
}, {
"balanceAmount" : {
"currency" : "...",
"amount" : "..."
},
"balanceType" : "INTERIMBOOKED",
"creditLimitIncluded" : true,
"lastChangeDateTime" : "...",
"referenceDate" : "...",
"lastCommittedTransaction" : "..."
} ]
}