v1

latestOpenAPI 3.1.02026-07-24170121.2 MB

Create Bank Account

post/v1/bankaccounts

Headers

Acceptstring required

Indicates which content types, expressed as MIME types, the client is able to understand.

Content-Typestring required

Indicates the media type of the resource sent in the HTTP message body. <br /><br /><b>Possible Values:</b><br /> application/json<br />application/x-www-form-urlencoded

Request body

account_numberstring required

Account Number.

routing_numberstring required

Routing Number

first_namestring required

First name of account holder

last_namestring required

Last name of account holder

account_type'Personal Checking' | 'Personal Savings' | 'Business Checking' | 'Business Savings' required

Account type. Must be one of the following: 'Personal Checking','Personal Savings','Business Checking','Business Savings'

sec_code'CCD' | 'PPD' | 'TEL' | 'WEB' required

Sec. code' Must be one of the following: 'CCD','PPD','TEL','WEB'

customer_idstring

An ID of the Customer that the Bank Account belongs to.

company_namestring

company_name is required when sending account type as Business Checking or Business Savings

Response

201

Example response

{
  "data": {
    "object": "BankAccount",
    "id": "j4ELaekDLJak3JdD",
    "first_name": "Test",
    "last_name": "Test",
    "account_type": "Personal Checking",
    "sec_code": "CCD",
    "routing_number": 111111118,
    "account_number": "1234",
    "is_default": true
  }
}