GET /v1/accounts/{accountId}/balances
curl \
-X GET https://api.memo.bank/nextgenpsd2/v1/accounts/{accountId}/balances \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Signature: $SIGNATURE"
Response examples (default)
{
"account": {
"iban": "string",
"maskedPan": "string",
"currency": "string",
"cashAccountType": "string"
},
"balances": [
{
"balanceAmount": {
"currency": "string",
"amount": "string"
},
"balanceType": "closingBooked",
"creditLimitIncluded": true,
"referenceDate": "2024-05-04"
}
]
}