Create a satispay gateway

How to create a satispay gateway via API

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

Request

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

Arguments

Body ParameterTypeRequired

type

string

Required

attributes.name

string

Required

attributes.reference

string

Optional

attributes.reference_origin

string

Optional

attributes.metadata

object

Optional

attributes.token

string

Required

relationships.satispay_payments

array

Optional

Example

The following request creates a new satispay gateway:

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

Last updated