Update Check account for a Buyer by Token

Overview

Use this route to update buyer check account. After verification started, verification fields (account/routing number etc.) will be ignored from update.

Resource Access

POST https://<hostname>/buyer/v1/buyer/{buyerId}/checkAccount/{accountToken}/update

Attributes

FieldsSub FieldsMandatory / Optional
checkStartNumberOptional
address
street1Optional
cityOptional
stateOptional
postalCodeOptional

{
 "address": {
   "street1": "ABC STREET",
   "city": "ABC CITY",
   "state": "AL",
   "postalCode": "10002"
 },
 "bankName": "ABC BANK",
 "accountNumber": "0987777",
 "routingNumber": "121000248",
 "accountType": "savings",
 "checkStartNumber": 909090
}

Example Request

🚧

POST https://<hostname>/buyer/v1/buyer/6d342f3d-fb2a-539c-893f-be4ba308e770/checkAccount/add


{
      
  "routingNumber": "051000020",
 "accountNumber": "6086871619"
 "accountType": "checking",
 "bankName": "WELLS FARGO BANK",
"address": {
       "street1": "park street",
       "city": "NewYork",
       "state": "NY",
       "postalCode": "12345"
   },
   "checkStartNumber": 1,
  }

Example Response


{
   "id": "c70e7d98f775a821a2a117b480d07f8ee89ddf1a584162f9f9a751aff2c29598",
   "accountStatus": "ACCOUNT_ADDED"
}




Priority Technology Holdings Logo