Create a subscription model

How to create a subscription model via API

To create a new subscription model, send a POST request to the /api/subscription_models endpoint, passing the resource arguments in the request body.

Request

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

Arguments

Example

The following request creates a new subscription model:

curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/subscription_models' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "subscription_models",
    "attributes": {
      "name": "EU Subscription Model",
      "frequencies": [
        "hourly",
        "10 * * * *",
        "weekly",
        "monthly",
        "two-month"
      ]
    }
  }
}'

Last updated