Query parameters
-
withBalance boolean
GET /v1/accounts
curl \
-X GET https://api.memo.bank/nextgenpsd2/v1/accounts \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Signature: $SIGNATURE"
Response examples (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": "2024-05-04"
}
],
"_links": {
"balances": {
"href": "string"
},
"transactions": {
"href": "string"
}
},
"ownerName": "string"
}
]
}