The Wire sub-object

The fields of the Wire sub-objects which are part of the contact object
Contacts
The Wire sub-object
 last updated: 
November 30, 2023

The Domestic Wire sub-object

Field Type Optional Description
accountNumber string bank account number of the contact
routingNumber string ACH routing number of the contact's bank
accountType string type of the contact's bank account with possible values:
- businessChecking
- personalChecking
- businessSavings
- personalSavings
bankName string bank name of contact's bank
last4 string read only last 4 digits of the account number (useful in case of TANs)
address object beneficiary address: Domestic Wire Address sub-object


Example:

  1. "wire": {
  2.         "domestic": {
  3.             "accountNumber": "1098324502",
  4.             "routingNumber": "121000248",
  5.             "accountType": "businessChecking",
  6.             "bankName": "Wells Fargo",
  7.             "address": {
  8.                 "addressType": "wire",
  9.                 "line1": "123 Main St",
  10.                 "line2": "",
  11.                 "city": "New York",
  12.                 "state": "NY",
  13.                 "country": "US",
  14.                 "postalCode": "10001"
  15.             }
  16.         }
  17.     }

The International Wire sub-object

Notes:
- The contact phone number needs to be set when sending an international wire.
- Click here for more details on international wire requirements, including country specific requirements.

Field Type Description
bankIdentifierType enum Bank identifier type possible values:
- swift
bankIdentifierCode string bank's SWIFT/BIC code
accountType string type of the contact's bank account with possible values:
- business
- personal
beneficiaryBank string name of the beneficiary bank
beneficiaryAddress object see the Address sub-object
beneficiaryBankAddress object see the Address sub-object
correspondentBank string optional name of the correspondent/intermediary bank, if aaplicable
correspondentBankIdentifierCode string optional correspondent/intermediary bank's SWIFT/BIC code
correspondentBankAddress object optional, see the Address sub-object


Example:

  1. "wire": {
  2.         "international": {
  3.             "accountNumber": "920020006167511”,
  4.             "bankIdentifierType": "Swift",
  5.             "bankIdentifierCode": "AXISINBB227",
  6.             "accountType": "business",
  7.             "beneficiaryBank": "AXIS BANK LIMITED",
  8.             "beneficiaryAddress": {
  9.                 "addressType": "wire",
  10.                 "line1": "No.520, 6th Main Road, HAL 2nd Stage",
  11.                 "line2": "Indiranagar",
  12.                 "city": "BANGALORE",
  13.                 "state": "KARNATAKA",
  14.                 "country": "INDIA",
  15.                 "postalCode": "560038"
  16.             },
  17.             "beneficiaryBankAddress": {
  18.                 "addressType": "wire",
  19.                 "line1": "233 2ND MAIN SAMPIGE ROAD",
  20.                 "line2": "",
  21.                 "city": "BANGALORE",
  22.                 "state": "KARNATAKA",
  23.                 "country": "INDIA",
  24.                 "postalCode": "560003"
  25.             },
  26.             "correspondentBank": ""
  27.         }
  28.     }
  29. }