v4

OpenAPI 3.0.12026-07-3189233676.2 KB
Bank Accounts

List all bank accounts

List of all bank accounts used for the direct deposit

get/v1/links/{link_id}/bank_accounts/

Response

account_numberstring required

Account number

routing_numberstring

Routing number

account_namestring nullable

User friendly account name

account_type'C' | 'S' | 'null' nullable

Account type:

  • C - Checking account,
  • S - Savings account,
deposit_type'E' | 'P' | 'A' | 'null' nullable

Deposit type:

  • E - Entire paycheck,
  • P - Percentage of the paycheck,
  • A - Fixed amount from the paycheck,
deposit_valuestring decimal nullable

Deposit value

bank_namestring nullable

Bank name

Example response

[
  {
    "account_number": "1234567890",
    "routing_number": "123456789",
    "account_name": "My Bank",
    "account_type": "C",
    "deposit_type": "A",
    "deposit_value": "200.00",
    "bank_name": "TD Bank"
  }
]