Skip to main content

ACH

warning

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

Playgrounds

Response Types

For detailed information about response types, see Response Types.

ACHFieldsConfig

The types of the configurable options for the tokenizer ACH 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;
};
};