Query Bank Accounts
Request
ENDPOINT
/investor/investor/INVESTOR_KEY/bank_accountsMETHOD
GETSTATUS
200Query params
| Field | Type | Description | Options | Required |
|---|---|---|---|---|
status | string | New Account Status | "active" or "inactive" | No |
main_account | bool | Defines if the account is the investor's main account | True or False | No |
Responses
{
"data": [
{
"bank_account_key": "UUID4",
"financial_institution_code": "329",
"account_number": "00000000",
"account_digit": "0",
"account_branch": "0001",
"main_account": true,
"status": "active"
},
{
"bank_account_key": "UUID4",
"financial_institution_code": "329",
"account_number": "00000000",
"account_digit": "0",
"account_branch": "0001",
"main_account": false,
"status": "inactive"
}
],
"limit": 50,
"page": 0,
"is_last_page": true
}