Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.01 KB

bank-account-payment-details.md

File metadata and controls

34 lines (25 loc) · 2.01 KB

Bank Account Payment Details

Additional details about BANK_ACCOUNT type payments.

Structure

BankAccountPaymentDetails

Fields

Name Type Tags Description Getter
BankName String Optional The name of the bank associated with the bank account.
Constraints: Maximum Length: 100
String getBankName()
TransferType String Optional The type of the bank transfer. The type can be ACH or UNKNOWN.
Constraints: Maximum Length: 50
String getTransferType()
AccountOwnershipType String Optional The ownership type of the bank account performing the transfer.
The type can be INDIVIDUAL, COMPANY, or ACCOUNT_TYPE_UNKNOWN.
Constraints: Maximum Length: 50
String getAccountOwnershipType()
Fingerprint String Optional Uniquely identifies the bank account for this seller and can be used
to determine if payments are from the same bank account.
Constraints: Maximum Length: 255
String getFingerprint()
Country String Optional The two-letter ISO code representing the country the bank account is located in.
Constraints: Minimum Length: 2, Maximum Length: 2
String getCountry()
StatementDescription String Optional The statement description as sent to the bank.
Constraints: Maximum Length: 1000
String getStatementDescription()
AchDetails ACHDetails Optional ACH-specific details about BANK_ACCOUNT type payments with the transfer_type of ACH. ACHDetails getAchDetails()
Errors List<Error> Optional Information about errors encountered during the request. List getErrors()

Example (as JSON)

{
  "bank_name": "bank_name4",
  "transfer_type": "transfer_type8",
  "account_ownership_type": "account_ownership_type8",
  "fingerprint": "fingerprint6",
  "country": "country4"
}