Get variations of a published Item by its slug

get

/content/published/api/v1.1/items/.by.slug/{slug}/variations

Gets all variations of a published Item by its slug value.

Request

Path Parameters
  • Slug value of the published Item. Any special characters in slug must be encoded.
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root Schema : ItemSubResourceListVariationsInfo
Type: object
Variations
Show Source
Nested Schema : data
Type: array
Show Source
Nested Schema : VariationsInfo
Type: object
Variations Info.
Show Source
Nested Schema : items
Type: array
Content item variations.
Show Source
Nested Schema : Language
Type: object
LanguageItem
Show Source

400 Response

Bad Request. The server is unable to process the request on the client side due to malformed syntax, invalid data or message framing.

403 Response

Forbidden. Client is not authorized to perform this request.

404 Response

Not found.

500 Response

Internal server error. An unexpected error condition encountered in the system.
Back to Top

Examples

The following example shows how to read variations of published item with slug.

curl -i -X GET -H "Accept:application/json" 'http://<hostname>/content/published/api/v1.1/items/.by.slug/{slug}/variations'
Example 1

This reads variations of published item with slug: 1481786138210-116504309051007_en-us, channelToken: 7ffdaa85baae4fbca4b300144f93918c.

/content/published/api/v1.1/items/.by.slug/1481786138210-116504309051007_en-us/variations?channelToken=7ffdaa85baae4fbca4b300144f93918c

Response Body

{
        "data": [
          {
            "varType": "language",
            "masterItem": "COREAF9E55FE83E84885A10DDA42B5160A5F",
            "items": [
              {
                "id": "CORE4FD93D7B9DF2468DA6C122764D0AA85E",
                "value": "fr"
              },
              {
                "id": "COREAF9E55FE83E84885A10DDA42B5160A5F",
                "value": "en-US"
              }
            ]
          }
        ],
        "links": [
          {
            "href": "https://<hostname>/content/published/api/v1.1/items/.by.slug/1481786138210-116504309051007_en-us/variations?channelToken=7ffdaa85baae4fbca4b300144f93918c",
            "rel": "self",
            "method": "GET",
            "mediaType": "application/json"
          }
        ]
      }
Example 2

This reads variations of published digital item with slug: 1481786138210-116504309051007_en-us, channelToken:7ffdaa85baae4fbca4b300144f93918c.

/content/published/api/v1.1/items/.by.slug/1481786138210-116504309051007_en-us/variations?channelToken=7ffdaa85baae4fbca4b300144f93918c

Response Body

{
        "data": [
          {
            "varType": "language",
            "masterItem": "CONTAF9E55FE83E84885A10DDA42B5160A5F",
            "items": [
              {
                "id": "CONT4FD93D7B9DF2468DA6C122764D0AA85E",
                "value": "fr"
              },
              {
                "id": "CONTAF9E55FE83E84885A10DDA42B5160A5F",
                "value": "en-US"
              }
            ]
          }
        ],
        "links": [
          {
            "href": "https://<hostname>/content/published/api/v1.1/items/.by.slug/1481786138210-116504309051007_en-us/variations?channelToken=7ffdaa85baae4fbca4b300144f93918c",
            "rel": "self",
            "method": "GET",
            "mediaType": "application/json"
          }
        ]
      }
    }
Back to Top