Create a checkout.com gateway

How to create a checkout.com gateway via API

To create a new checkout.com gateway, send a POST request to the /api/checkout_com_gateways endpoint, passing the resource arguments in the request body.

Request

POST https://yourdomain.commercelayer.io/api/checkout_com_gateways

Arguments

Example

The following request creates a new checkout.com gateway:

curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/checkout_com_gateways' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "checkout_com_gateways",
    "attributes": {
      "name": "US payment gateway",
      "secret_key": "sk_test_xxxx-yyyy-zzzz",
      "public_key": "pk_test_xxxx-yyyy-zzzz"
    }
  }
}'

Last updated