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
Body Parameter
Type
Required
type
string
Required
attributes.name
string
Required
attributes.reference
string
Optional
attributes.reference_origin
string
Optional
attributes.metadata
object
Optional
attributes.secret_key
string
Required
attributes.public_key
string
Required
relationships.checkout_com_payments
array
Optional
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