Create a fixed amount promotion

How to create a fixed amount promotion via API

To create a new fixed amount promotion, send a POST request to the /api/fixed_amount_promotions endpoint, passing the resource arguments in the request body.

Request

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

Arguments

Example

The following request creates a new fixed amount promotion:

curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/fixed_amount_promotions' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "fixed_amount_promotions",
    "attributes": {
      "name": "Personal promotion",
      "starts_at": "2018-01-01T12:00:00.000Z",
      "expires_at": "2018-01-02T12:00:00.000Z",
      "fixed_amount_cents": 1000
    }
  }
}'

Last updated