Configure CardConnect

You can configure CardConnect programatically using the /gateways/card_connect endpoint.

The CardConnect Gateway Object

Attribute

Type

Description

type

string

Always gateway

name

string

The display name of the gateway

merchant_id

string

Your CardConnect Merchant ID

username

string

Your CardConnect username

password

string

Your CardConnect password

slug

string

A unique slug for this gateway

enabled

boolean

true or false that will enable the gateway

test

boolean

true or false to enable test transactions

Update CardConnect settings

PUT https://api.moltin.com/v2/gateways/card_connect

Headers

NameTypeDescription

Authorization

string

The Bearer token to grant access to the API

Request Body

NameTypeDescription

test

boolean

Indicates whether test transactions are enabled

slug

string

A unique slug for this gateway

name

string

The display name of the gateway

type

string

Always gateway

username

string

Your CardConnect username

password

string

Your CardConnect password

merchant_id

string

Your CardConnect Merchant ID

enabled

boolean

true, false

{
  "data": {
    "type": "gateway",
    "name": "CardConnect",
    "merchant_id": "",
    "username": ""
    "password": "",
    "slug": "cardconnect",
    "test": false,
    "enabled": false
  }
}
curl -X PUT https://api.moltin.com/v2/gateways/card_connect \
     -H "Authorization: Bearer XXX" \
     -H "Content-Type: application/json" \
     -d $'{
       "data": {
         "type": "gateway",
         "name": "CardConnect",
         "merchant_id": "",
         "username": ""
         "password": "",
         "slug": "cardconnect",
         "test": false,
         "enabled": false
       }
     }'

Last updated