How to enable FIS WorldPay Vantiv Express PassToken Credit Card on a merchant.
Vantiv/Element Express PaymentAccountCreate to tokenize cards using PassToken (PaymentAccountReferenceNumber).
Features
✅ Tokenization Credit Card payment methods can be converted to FIS WorldPay Vantiv Express PassToken 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
To set up your Worldpay PassToken account, you will need an Account ID, Account Token, and Acceptor ID. If you do not already have these credentials, please contact [email protected] to obtain them.
This table describes the required or possible attributes needed to configure a merchant product for this type.
| Name | Type | Description | Rules |
|---|---|---|---|
| accountId | string | (required) Account Id for Express. Examples: Test_account_id. | |
| accountToken | string | (required) Account Token for Express. Examples: Test_account_token. | |
| acceptorId | string | (required) Acceptor Id for Express. Examples: Test_acceptor_id. |
Features
All tokenize products support the following features attributes.
| Name | Values | Description |
|---|---|---|
| auto-tokenize | true 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-permission | single-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": "creditcard",
"provider": "vantiv-passtoken",
"config": {
"accountId": "Test_account_id",
"accountToken": "Test_account_token",
"acceptorId": "Test_acceptor_id"
},
}