Create a checkout.com payment

How to create a checkout.com payment via API

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

Request

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

Arguments

Body ParameterTypeRequired

type

string

Required

attributes.payment_type

string

Required

attributes.token

string

Required

attributes.session_id

string

Optional

attributes.success_url

string

Optional

attributes.failure_url

string

Optional

attributes.reference

string

Optional

attributes.reference_origin

string

Optional

attributes.metadata

object

Optional

relationships.order

object

Required

Example

The following request creates a new checkout.com payment:

curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/checkout_com_payments' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "checkout_com_payments",
    "attributes": {
      "payment_type": "token",
      "token": "tok_4gzeau5o2uqubbk6fufs3m7p54"
    },
    "relationships": {
      "order": {
        "data": {
          "type": "orders",
          "id": "ABCRtyUpBa"
        }
      }
    }
  }
}'

Last updated