Read balance

GET /v1/accounts/{accountId}/balances

Path parameters

Responses

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 example (default)
{
  "account": {
    "iban": "string",
    "currency": "string",
    "cashAccountType": "string"
  },
  "balances": [
    {
      "balanceAmount": {
        "currency": "string",
        "amount": "string"
      },
      "balanceType": "closingBooked",
      "creditLimitIncluded": true,
      "referenceDate": "2023-05-04"
    }
  ]
}