Mock

How to enable Mock ACH on a merchant.

Authiva enables automatically converting a customer's payment method into a tokenized tender, based on the requirements of the configured payment workflows. This enables merchants to securely store and reuse payment details in a tokenized format, supporting streamlined and compliant transaction processing. This mock product allows developers to simulate the ACH tokenization process without handling real bank account information or initiating actual transfers. It is ideal for testing integration logic, validating API interactions and webhook payloads, and ensuring system readiness before transitioning to a live ACH token provider.

Features

Tokenization ACH payment methods can be converted to Mock payment tokens.
Auto Tokenize Can use features.auto-tokenize to have all corresponding tender types auto converted to tokens. See tokenize for more details.

Resources

Configuration

No configuration is required.

Features

All tokenize products support the following features attributes.

NameValuesDescription
auto-tokenizetrue or false (default)Can be provided for one tokenized product per payment method type (tender type). When set, any call to create a payment method for that underlying tender will automatically be converted to a token of the defined type.
auto-permissionsingle-use or use (default)Used to determine the permission to automatically set on each token created using this tokenization provider. Setting a value of single-use will mean a token is deleted on each successful use.

Enabling this Product

Using create-merchant-product API you can add a new product to your merchant record. Below is an example configuration for the payload of that request.

{
  "line": "tokenize",
  "product": "ach",
  "provider": "mock",
  "config": {},
  
}