Skip to main content

Create a product directly inside an offering

POST 

https://euwest.api.elasticpath.com/v2/subscriptions/offerings/:offering_uuid/products

After saving an offering, you can add new products to it at any time.

Request

Responses

Success. The product is created.

Authorization: http

name: BearerTokentype: httpscheme: bearer

Request Collapse all
Base URL
https://euwest.api.elasticpath.com/v2
Auth
Parameters
— pathrequired
Body
{
  "data": {
    "type": "subscription_offering_product",
    "attributes": {
      "external_ref": "abc123",
      "name": "Magazine",
      "description": "A lovely magazine that is published every month.",
      "sku": "MAGAZINE1",
      "main_image": "https://magazine.com/cover.jpg",
      "price": {
        "USD": {
          "amount": 100,
          "includes_tax": false
        },
        "GBP": {
          "amount": 90,
          "includes_tax": true
        }
      },
      "price_units": {
        "unit": "day",
        "amount": 7
      },
      "feature_configurations": {}
    }
  }
}
ResponseClear

Click the Send API Request button above and see the response here!