Create a payment option

How to create a payment option via API

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

Request

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

Arguments

Body ParameterTypeRequired

type

string

Required

attributes.name

string

Optional

attributes.payment_source_type

string

Required

attributes.data

object

Required

attributes.reference

string

Optional

attributes.reference_origin

string

Optional

attributes.metadata

object

Optional

relationships.order

object

Required

Example

The following request creates a new payment option:

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

Last updated