Read Publish Info of an Item

get

/content/management/api/v1.1/items/{id}/publishInfo

Read publish information of a given item.

Request

Path Parameters
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

OK.
Body ()
Root Schema : ItemSubResourceListPublishInfo
Type: object
Item SubResource.
Show Source
Nested Schema : data
Type: array
Show Source
Nested Schema : PublishInfo
Type: object
PublishInfo
Show Source
Nested Schema : date
Type: object
date
Show Source

304 Response

Not modified.

400 Response

Bad request.

403 Response

Forbidden.

404 Response

Not found.

500 Response

Internal server error.
Back to Top

Examples

The following example shows how to get publish information of an item by submitting a GET request using cURL.

curl -X GET -H 'Accept: application/json' 'https://host:port/content/management/api/v1.1/items/{id}/publishInfo'

Example:

This reads publish info of item id: COREB423D3839C634CD485B76C696E58C41F.

/content/management/api/v1.1/items/COREB423D3839C634CD485B76C696E58C41F/publishInfo

Response Body

{
    "data": [
    {
      "channel": "CC7F904D19025B10A1CCEB3310EE70D4C814DBFED3B2",
      "publishedBy": "marketing.user",
      "version": "1",
      "publishedDate": {
        "value": "2018-12-03T09:50:21.705Z",
        "timezone": "UTC"
    }
    }
    ],
    "links": [
    {
      "href": "https://host:port/content/management/api/v1.1/items/COREB423D3839C634CD485B76C696E58C41F/publishInfo",
      "rel": "self",
      "method": "GET",
      "mediaType": "application/json"
    }
    ]
    }
Back to Top