v1

latestOpenAPI 3.1.02026-07-241660500.9 KB

Create vaulted bank account

Store a customer's bank account on file

post/v3/customerbankaccount

Query parameters

idinteger required

Customer id

echoboolean

Return results

Request body

accountNumberstring

Bank account number

routingNumberstring

Routing Number

namestring

Customer Name

typestring

Account Type (Either Checking or Savings)

codestring

Account code (default is bank)

isDefaultboolean

Is this card the primary card?

addressIdinteger

Associate a billing address with the account

Response

201

idinteger
addressidinteger
hashstring
last4string
cardIdstring
tokenstring
routingNumberstring
namestring
isDefaultboolean
typestring

Example response

{
  "id": 10600949,
  "addressid": 1976324,
  "hash": "FeKw08M4keuwQgwg4yDOlMZfvIwzEkSOsiU=",
  "last4": "6789",
  "cardId": "r5o6bu16lxxxhKkXNvAJRjhx1cf",
  "token": "TYB0E3PNN7XSU259FM7KTHN1GOGG7UIV",
  "routingNumber": "061000052",
  "name": "Carlos Diaz",
  "address": {
    "id": 1976324,
    "name": "Home",
    "address1": "123 Main Street",
    "address2": "Suite 100",
    "city": "Roswell",
    "state": "GA",
    "zip": "30004",
    "country": "US",
    "created": "2015-05-22T16:01:05.83Z",
    "isDefault": true
  },
  "type": "Checking"
}