Create a Bank Account Token
POST
/v1/tokens
This above command returns a JSON structure like this:
Arguments
Contains the bank account information to be stored.
bank_account[currency]
string
optional
The currency the bank acount is in.
bank_account[country]
string
required
The country in which the bank account is located.
bank_account[account_holder_name]
string
optional
The name of the person or business that owns the bank account. This field is required when attaching the bank account to a Customer object.
bank_account[account_holder_type]
string
optional
The type of entity that holds the account. This can be either individual, company. This fields is required when attaching the bank account to a Customer object.
bank_account[routing_number]
string
conditional
The routing number, short code, or other country-appropriate institution number for the bank account.
bank_account[account_number]
string
required
The account number for the bank account, in string formaat. Must be a checking account.
bank_account[saving]
boolean
optional
True if the account is from saving.
bank_account[bank_name]
string
optional
The name of the financial institution that the account belongs to.
bank_account[swift_code]
string
optional
The account swift code for international transfers.
Returns
Returns the created bank account token if successful. Otherwise, this call returns an error.
Last updated