Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 2.48 KB

AccountRouting.md

File metadata and controls

34 lines (28 loc) · 2.48 KB

Synctera::AccountRouting

Properties

Name Type Description Notes
ach_routing_number String The routing number used for US ACH payments. Only appears if `bank_countries` contains `US`. Value may be masked, in which case only the last four digits are returned. [optional]
bank_address Address [optional]
bank_countries Array<String> The countries that this bank operates the account in
bank_name String The name of the bank managing the account
correspondent_bank_details Array<CorrespondentBankDetails> The details of the correspondent banks for the account. [optional]
eft_ca_routing_number String > 🚧 Alpha > This is an Alpha property. Feedback from the community is welcome. We may make breaking changes to this property. The 9 digit routing number used for EFT CA payments, identifying a Canadian bank. The format is 0xxxyyyyy where xxx is the institution number and yyyyy is the transit number. On write, Synctera will store the entire routing number; on read, we only return the last 4 characters. Value may be masked, in which case only the last four digits are returned. [optional]
eft_routing_number String The routing number used for EFT payments, identifying a Canadian bank, consisting of the institution number and the branch number. Only appears if `bank_countries` contains `CA`. Value may be masked, in which case only the last four digits are returned. This attribute is deprecated and will be removed in a future API version. Use eft_ca_routing_number instead. [optional]
swift_code String The SWIFT code for the bank. Value may be masked, in which case only the last four characters are returned. [optional]
wire_routing_number String The routing number used for domestic wire payments. Only appears if `bank_countries` contains `US`. Value may be masked, in which case only the last four digits are returned. [optional]

Example

require 'synctera'

instance = Synctera::AccountRouting.new(
  ach_routing_number: 756392185,
  bank_address: null,
  bank_countries: null,
  bank_name: Chase,
  correspondent_bank_details: null,
  eft_ca_routing_number: 02101140,
  eft_routing_number: 02101140,
  swift_code: CHASUS3AXXX,
  wire_routing_number: 756392185
)