ACH
warning
Before start integrating ACH, please contact support. You won't get success response without domain registration.
Playgrounds
- TypeScript
- JavaScript
Types of response
ACHPaymentResponse
Details associated with an ACH payment method.
Property | Type | Description |
---|---|---|
status | BankAccountStatusType | Status of the bank account. |
holderName | string | Name of the account holder. |
holderType | string | Type of account holder. |
bankName | string | Name of the bank. |
bankAccountType | BankAccountType | Type of the bank account. |
routingNumber | string | Bank routing number. |
lastFourAccountNumber | string | Last four digits of the account number. |
BankAccountStatusType
Possible statuses of the bank account.
Type | Description |
---|---|
'new' | 'validated' | 'pending' | 'errored' | Status of the bank account. |
BankAccountType
Types of bank accounts.
Type | Description |
---|---|
'checking' | 'savings' | 'unknown' | Type of the bank account. |
ACHFieldsConfig
The types of the configurable options for the tokenizer card payment fields.
/**
* Configuration for the ach fields.
*/
export type ACHFieldsConfig = {
/**
* Configuration for the email field.
* @default undefined
*/
email?: {
/**
* Placeholder text for the email field.
* @default undefined
*/
placeholder?: string;
/**
* Default value for the email field.
* @default undefined
*/
value?: string;
/**
* Default value for email field.
* @default undefined
*/
required: ?boolean;
};
};
FieldUpdateConfig
The types of the configurable options for the updatable ach payment fields.
/**
* Configuration for the ach fields.
*/
export type FieldUpdateConfig = {
/**
* Configuration for the email field.
*/
email?: {
/**
* Placeholder text for the email field.
*/
placeholder?: string;
/**
* Value for the email field.
*/
value?: string;
};
};