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" : "FORWARDAVAILABLE", "creditLimitIncluded" : true, "lastChangeDateTime" : 12345, "referenceDate" : "...", "lastCommittedTransaction" : "..." }, { "balanceAmount" : { "currency" : "...", "amount" : "..." }, "balanceType" : "FORWARDAVAILABLE", "creditLimitIncluded" : true, "lastChangeDateTime" : 12345, "referenceDate" : "...", "lastCommittedTransaction" : "..." } ] }