List all promotions
How to fetch a collection of promotions via API
To fetch a collection of promotions, send a GET request to the /api/promotions endpoint.
Request
GET https://yourdomain.commercelayer.io/api/promotions
Example
The following request fetches a collection of promotions:
curl -g -X GET \
  'https://yourdomain.commercelayer.io/api/promotions/' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token'On success, the API responds with a 200 OK status code, returning a paginated collection of resource objects:
{
  "data": [
    {
      "id": "XAyRWNUzyN",
      "type": "promotions",
      "links": {
        "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN"
      },
      "attributes": {
        "name": "Personal promotion",
        "type": "percentage_discount_promotions",
        "currency_code": "EUR",
        "exclusive": true,
        "priority": 2,
        "starts_at": "2018-01-01T12:00:00.000Z",
        "expires_at": "2018-01-02T12:00:00.000Z",
        "total_usage_limit": 5,
        "total_usage_count": 2,
        "active": true,
        "status": "pending",
        "weight": 112,
        "disabled_at": "2018-01-01T12:00:00.000Z",
        "created_at": "2018-01-01T12:00:00.000Z",
        "updated_at": "2018-01-01T12:00:00.000Z",
        "reference": "ANY-EXTERNAL-REFEFERNCE",
        "reference_origin": "ANY-EXTERNAL-REFEFERNCE-ORIGIN",
        "metadata": {
          "foo": "bar"
        }
      },
      "relationships": {
        "market": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/market",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/market"
          }
        },
        "promotion_rules": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/promotion_rules",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/promotion_rules"
          }
        },
        "order_amount_promotion_rule": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/order_amount_promotion_rule",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/order_amount_promotion_rule"
          }
        },
        "sku_list_promotion_rule": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/sku_list_promotion_rule",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/sku_list_promotion_rule"
          }
        },
        "coupon_codes_promotion_rule": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/coupon_codes_promotion_rule",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/coupon_codes_promotion_rule"
          }
        },
        "custom_promotion_rule": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/custom_promotion_rule",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/custom_promotion_rule"
          }
        },
        "sku_list": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/sku_list",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/sku_list"
          }
        },
        "coupons": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/coupons",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/coupons"
          }
        },
        "attachments": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/attachments",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/attachments"
          }
        },
        "events": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/events",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/events"
          }
        },
        "tags": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/tags",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/tags"
          }
        },
        "versions": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/versions",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/versions"
          }
        },
        "event_stores": {
          "links": {
            "self": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/relationships/event_stores",
            "related": "https://yourdomain.commercelayer.io/api/promotions/XAyRWNUzyN/event_stores"
          }
        }
      },
      "meta": {
        "mode": "test",
        "organization_id": "xRRkjDFafe",
        "trace_id": "69abaa3545913c78132e5578bd26208d44aa9043647d78698fd0021f3958cd74"
      }
    },
    {
      "other": "... 9 promotions (first page)"
    }
  ],
  "meta": {
    "record_count": 140,
    "page_count": 14
  },
  "links": {
    "first": "https://yourdomain.commercelayer.io/api/promotions?page[number]=1&page[size]=10",
    "next": "https://yourdomain.commercelayer.io/api/promotions?page[number]=2&page[size]=10",
    "last": "https://yourdomain.commercelayer.io/api/promotions?page[number]=14&page[size]=10"
  }
}Remember that when you fetch a list of resources you get paginated result.
Sortable fields
The list of promotions can be sorted by the following fields:
Attributes
- name
- type
- currency_code
- exclusive
- priority
- starts_at
- expires_at
- total_usage_limit
- total_usage_count
- id
- disabled_at
- created_at
- updated_at
- reference
- reference_origin
Relationships
- market
- sku_list
Filterable fields
The list of promotions can be filtered by the following fields:
Attributes
- name
- type
- currency_code
- exclusive
- priority
- starts_at
- expires_at
- total_usage_limit
- total_usage_count
- id
- disabled_at
- created_at
- updated_at
- reference
- reference_origin
- metadata
Relationships
- market
- promotion_rules
- order_amount_promotion_rule
- sku_list_promotion_rule
- coupon_codes_promotion_rule
- custom_promotion_rule
- sku_list
- coupons
- attachments
- events
- tags
Last updated

