The Cross-Border sub-object

Part of the Contact object, the Cross-Border sub-object's fields, types, and descriptions
Contacts
The Cross-Border sub-object
 last updated: 
November 30, 2023
Field Type Description
beneficiaryType string type of benificiary (eg. person, business)
beneficiaryRelationship string relationship to beneficiary (eg. client)
beneficiaryIdentificationType enum mandatory ID type used with possible values:
- for business: companyRegistrationNumber, CNPJ, other
- for person: passport, nationalId, licenseNumber, CPF, other
beneficiaryIdentificationValue string mandatory ID number (up to 255 characters)
address object bank address: Bank Address sub-object
accountNumber string bank account number of the contact
accountType enum type of the contact's bank account with possible values:
- businessChecking
- personalChecking
- businessSavings
- personalSavings
bankName string name of contact's bank
bankCode string optional bank SWIFT/BIC code
bankIdentifierType1 string bank identifier type (eg. ifsc)
bankIdentifierCode1 string bank identifier code
bankIdentifierType2 string optional secondary bank identifier type (eg. ifsc)
bankIdentifierCode2 string optional secondary bank identifier code


Example:

  1. {
  2.   "accountId": "{{accountId}}",
  3.   "name": "Sanjay Pandey",
  4.   "email": "sanjay@solidfi.com",
  5.   "phone": "+19958917838",
  6.   "crossBorder": {
  7.     "beneficiaryType": "person",
  8.     "beneficiaryRelationship": "client",
  9.     "beneficiaryIdentificationType": "passport",
  10.     "beneficiaryIdentificationValue": "gfht655333",
  11.     "address": {
  12.       "addressType": "bank",
  13.       "line1": "1800 Tysons Blvd, Ste 50",
  14.       "line2": "Tysons II",
  15.       "city": "McLean",
  16.       "state": "Maryland",
  17.       "country": "IN",
  18.       "postalCode": "22102"
  19.     },
  20.     "accountNumber": "7656567676",
  21.     "accountType": "checking",
  22.     "bankName": "IDFC First Bank",
  23.     "bankCode": "",
  24.     "bankIdentifierType1": "ifsc",
  25.     "bankIdentifierCode1": "IDFB0081103",
  26.     "bankIdentifierType2": "",
  27.     "bankIdentifierCode2": ""
  28.   }
  29. }