Skip to main content

Query Bank Accounts


Request

ENDPOINT
/investor/investor/INVESTOR_KEY/bank_accounts
METHOD
GET
STATUS
200

Query params

FieldTypeDescriptionOptionsRequired
statusstringNew Account Status"active" or "inactive"No
main_accountboolDefines if the account is the investor's main accountTrue or FalseNo

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
}