Browse documentation

Bank Accounts

4 endpoints.

Paths are relative to the base URL for your environment. Unless marked otherwise, every request needs an Authorization: Bearer header.

POST/bank-accounts

Create Bank Account

Request body

json
{
  "account_holder_name": "Test Company LLC",
  "bank_name": "Chase",
  "routing_number": "021000021",
  "account_number": "123456789012",
  "account_type": "checking",
  "is_primary": false
}

Response fields

Asserted by the API’s own test suite.

successaccountid
GET/bank-accounts

Get Bank Accounts

Response fields

Asserted by the API’s own test suite.

successaccounts
PATCH/bank-accounts/{bank_account_id}/primary

Set Primary Bank Account

Path parameters

  • {bank_account_id} — required

Response fields

Asserted by the API’s own test suite.

successaccounts
DELETE/bank-accounts

Delete Bank Account

Query parameters

  • id — example: {{bank_account_id}}

Response fields

Asserted by the API’s own test suite.

success