How to enable CardConnect Credit Card on a merchant.
CardConnect provides credit card payment method tokenization services, allowing businesses to securely store and manage customer payment information. This solution facilitates seamless integration and management of credit card payments, optimizing payment processing and security.
Features
✅ Tokenization Credit Card payment methods can be converted to CardConnect 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
Using CardConnect Credit Card Tokenization: No configuration is needed. CardConnect's credit card tokenization system is designed to be integrated easily with minimal setup, allowing businesses to start tokenizing credit card payment methods right away. For any specific integration guidelines or advanced usage, consult the CardConnect Developer Documentation.
This table describes the required or possible attributes needed to configure a merchant product for this type.
Name | Type | Description | Rules |
---|---|---|---|
host | string | (required) The host URL for the CardConnect integration. Examples: api.cardconnect.com. | |
basicAuth | string | (required) The basic authentication string for the CardConnect integration. | |
merchantId | string | (required) The merchant ID for the CardConnect integration. Examples: your_merchant_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": "cardconnect",
"config": {
"host": "api.cardconnect.com",
"merchantId": "your_merchant_id"
}
}