Responses

GET /v1/accounts
curl \
 -X GET https://api.memo.bank/nextgenpsd2/v1/accounts \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Signature: $SIGNATURE"
Response example (default)
{
  "accounts": [
    {
      "currency": "string",
      "resourceId": "string",
      "iban": "string",
      "name": "string",
      "displayName": "string",
      "product": "string",
      "cashAccountType": "string",
      "status": "enabled",
      "bic": "string",
      "usage": "PRIV",
      "balances": [
        {
          "balanceAmount": {
            "currency": "string",
            "amount": "string"
          },
          "balanceType": "closingBooked",
          "creditLimitIncluded": true,
          "referenceDate": "2023-05-04"
        }
      ],
      "_links": {
        "balances": {
          "href": "string"
        },
        "transactions": {
          "href": "string"
        }
      },
      "ownerName": "string"
    }
  ]
}