Skip to main content

ACH

warning

Before start integrating ACH, please contact support. You won't get success response without domain registration.

Playgrounds

Types of response

ACHPaymentResponse

Details associated with an ACH payment method.

PropertyTypeDescription
statusBankAccountStatusTypeStatus of the bank account.
holderNamestringName of the account holder.
holderTypestringType of account holder.
bankNamestringName of the bank.
bankAccountTypeBankAccountTypeType of the bank account.
routingNumberstringBank routing number.
lastFourAccountNumberstringLast four digits of the account number.

BankAccountStatusType

Possible statuses of the bank account.

TypeDescription
'new' | 'validated' | 'pending' | 'errored'Status of the bank account.

BankAccountType

Types of bank accounts.

TypeDescription
'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;
};
};