List all Bank Accounts
Retrieve a list of bank accounts.
Endpoint
GET /v1/bank_accounts
Scope
bank_accounts:all
Request
Query Parameters
Name | Type | Required | Description |
---|---|---|---|
page | number | false | The number of the page to retrieve. Default 1 |
pageSize | number | false | The number of bank accounts to retrieve per page. Default 30 |
GET /v1/bank_accounts?page=1&pageSize=30
Response
Name | Type | Description |
---|---|---|
output | Array<Bank Account> | The list of bank accounts. |
code | string | The response status code text. |
Response Body
{
"output": [
{
"id": "2af83836-43ea-407b-ab4e-9c64ee817b28",
"bank_name": "HSBC Mexico",
"account_type": "SAVINGS",
"bank_code": "HSBC",
"currency_id": "MXN",
"account_number": "93082109309321",
"created_at": "2023-10-05T19:04:43.292Z",
"updated_at": "2023-10-05T19:04:43.292Z"
}
],
"code": "OK"
}
Test the endpoint
- Production
- Sandbox
curl -X GET 'https://api.minteo.finance/v1/bank_accounts?page=1&pageSize=30' \
-H 'Authorization: Bearer <your-api-key>'
curl -X GET 'https://api.sandbox.minteo.finance/v1/bank_accounts?page=1&pageSize=30' \
-H 'Authorization: Bearer <your-api-key>'