List all IBANs
GET
/v2/ibans
Query parameters
-
account_id string(uuid)
ID of the account.
-
page integer(int32)
Index of the requested page.
Minimum value is
1
. Default value is1
. -
size integer(int32)
Number of elements per page in response.
Minimum value is
1
, maximum value is100
. Default value is10
.
GET /v2/ibans
curl \
-X GET https://api.memo.bank/v2/ibans \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response example (200)
{
"results": [
{
"id": "fe98f29d-5165-45ff-83f9-d7aa83e970b5",
"account_id": "de2284c3-0360-4e4a-b10d-771f75b772d4",
"iban": "FR27590171083068762111832788",
"name": "customer no12345",
"status": "active",
"type": "main"
}
],
"has_prev": true,
"has_next": true
}