Query parameters
-
Index of the requested page. Deprecated, use
page_tokeninstead.Minimum value is
1. -
Token used to fetch a specific page, as returned by the
next_page_tokenorprev_page_tokenfield of a previous response. Mutually exclusive withpage. -
Number of elements per page in response.
Minimum value is
1, maximum value is100. Default value is10.
GET
/v1/accounts
curl \
--request GET 'https://api.memo.bank/v1/accounts'
Response examples (200)
{
"results": [
{
"id": "db2b50c0-a943-4eb1-a69f-fa37f112daa8",
"name": "Main account",
"status": "active",
"balance": 42,
"currency": "EUR",
"iban": "FR7617338000017498690379033",
"type": "current_account",
"is_main": true
}
],
"has_prev": true,
"has_next": true,
"next_page_token": "eyJwIjozfQ",
"prev_page_token": "eyJwIjoxfQ"
}