Get variations of a published Item by its slug filtered by Variation Type

get

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

Get all variations of a published Item by its slug value filtered by Variation Type.

Request

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

Response

Supported Media Types

200 Response

Successful operation.
Body ()
Root 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 type language for published item with slug.

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

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

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

Response Body

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

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

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

Response Body


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