Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.73 KB

bank-account-payment-details.md

File metadata and controls

34 lines (25 loc) · 1.73 KB

Bank Account Payment Details

Additional details about BANK_ACCOUNT type payments.

Structure

Bank Account Payment Details

Fields

Name Type Tags Description
bank_name string Optional The name of the bank associated with the bank account.
Constraints: Maximum Length: 100
transfer_type string Optional The type of the bank transfer. The type can be ACH or UNKNOWN.
Constraints: Maximum Length: 50
account_ownership_type string Optional The ownership type of the bank account performing the transfer.
The type can be INDIVIDUAL, COMPANY, or UNKNOWN.
Constraints: Maximum Length: 50
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
country string Optional The two-letter ISO code representing the country the bank account is located in.
Constraints: Minimum Length: 2, Maximum Length: 2
statement_description string Optional The statement description as sent to the bank.
Constraints: Maximum Length: 1000
ach_details ACH Details Optional ACH-specific details about BANK_ACCOUNT type payments with the transfer_type of ACH.
errors List of Error Optional Information about errors encountered during the request.

Example (as JSON)

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