Create a link

How to create a link via API

To create a new link, send a POST request to the /api/links endpoint, passing the resource arguments in the request body.

Request

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

Arguments

Body ParameterTypeRequired

type

string

Required

attributes._disable

boolean

Optional

attributes._enable

boolean

Optional

attributes.client_id

string

Required

attributes.domain

string

Optional, default to "commercelayer.link"

attributes.expires_at

datetime

Required

attributes.item_type

string

Optional

attributes.metadata

object

Optional

attributes.name

string

Required

attributes.reference

string

Optional

attributes.reference_origin

string

Optional

attributes.scope

string

Required

attributes.starts_at

datetime

Required

relationships.item

object

Required

Example

The following request creates a new link:

curl -g -X POST \
  'https://yourdomain.commercelayer.io/api/links' \
  -H 'Accept: application/vnd.api+json' \
  -H 'Authorization: Bearer your-access-token' \
  -H 'Content-Type: application/vnd.api+json' \
  -d '{
  "data": {
    "type": "links",
    "attributes": {
      "client_id": "xxxx-yyyy-zzzz",
      "expires_at": "2018-01-02T12:00:00.000Z",
      "name": "FW SALE 2023",
      "scope": "market:id:GhvCxsElAQ,market:id:kJhgVcxZDr",
      "starts_at": "2018-01-01T12:00:00.000Z"
    },
    "relationships": {
      "item": {
        "data": {
          "type": "sku_lists",
          "id": "ABCRtyUpBa"
        }
      }
    }
  }
}'

Last updated