RocketKOR

Bank Account Object

The Bank Account object represents the bank account attached to an external or integrated Financial Account.

Attributes

bankName

string

Name of the financial institution.

routingNo

string, max length: 9

Routing number for the financial institution.

accountNumberTail

string, max length: 4

Last 4 digits of the bank account number.

nameOnAccount

string, min length: 1, max length: 40

Name of the bank account owner.

billingAddress

object

Applies to external bank Financial Accounts only. Billing address for the bank account.

addressLine1

string, min length: 1, max length: 50

Address line 1.

city

string, min length: 1, max length: 25

City.

state

string, min length: 2, max length: 3

State, province, or territory. Required if country is USA or CAN. Must be an ISO 3166-2 uppercase alpha 2-character or 3-character country subdivision code. For example, Missouri is MO and Ontario is ON.

country

string, min length: 3, max length: 3

Country. Must be an ISO 3166-1 uppercase alpha 3-character country code. For example, the United States is USA and Canada is CAN.

postalCode

string, min length: 1, max length: 10

ZIP code or postal code. For US addresses, must be a valid value of 5 digits (example: 63368) or 5 digits-4 digits (example: 63368-5555). Can be alphanumeric for other countries.

Bank Account Object

				
					{
  "bankName": "CitiBank",
  "routingNo": "321171184",
  "accountNumberTail": "4523"
  "nameOnAccount": "Mark Strong",
  "billingAddress": {
    "addressLine1": "625 Queen St",
    "addressLine2": "Suite 201",
    "addressLine3": "South Building",
    "city": "Vancouver",
    "state": "BC",
    "country": "CAN",
    "postalCode": "V5K 0A1"
  }
}