Bank Accounts

Learn how to manage bank accounts for the DDS and PLL.

Overview

The endpoints in this section cover management for bank accounts when using Direct Deposit Switching (DDS) and Paycheck Linked Loans (PLL).

Access information from bank accounts in a user's payroll account during VOIE before making deposit switches.

Attributes

The values in these sections are for bank account objects.

Attribute

Type

Description

account_number

string

Bank account number

routing_number

string

Routing number

account_name

string

User-friendly account name for bank account

account_type

string

Account type of bank account, includes two types
C - Checking account
S - Saving account

deposit_type

string

Deposit type of bank account, three types of deposits available
E - Entire paycheck
P - Percentage of paycheck
A - Fixed amount from paycheck

deposit_value

string

Deposit value of selected bank account

bank_name

string

Bank name

Endpoints

The two items below are the available endpoints.

Example response

This JSON object is a sample payload for the endpoint.

[
  {
    "account_number": "11114623",
    "routing_number": "101014378",
    "account_name": null,
    "account_type": "C",
    "deposit_type": "A",
    "deposit_value": "1604.98",
    "bank_name": "Sandbox Bank"
  },
  {
    "account_number": "11111308",
    "routing_number": "101013399",
    "account_name": null,
    "account_type": "C",
    "deposit_type": "A",
    "deposit_value": "25.00",
    "bank_name": "Sandbox Bank"
  }
]