listCECContent

get

/ccstore/v1/cecContent

Retrieve list of CEC Content Items, cross referenced with matching CMS Content Map items

Request

Supported Media Types
Query Parameters
Back to Top

Response

Supported Media Types

200 Response

An array of JSON objects is returned that represents the list of CEC Content Items.
Body ()
Root Schema : listCECContent_response
Type: object
Show Source
Example Response (application/json)
[
    {
        "createdDate":{
        },
        "publishInfo":[
            {
                "publishedDate":{
                },
                "version":"string",
                "target":"string"
            }
        ],
        "name":"string",
        "description":"string",
        "language":{
        },
        "links":[
            {
                "templated":true,
                "method":"string",
                "profile":"string",
                "rel":"string",
                "mediaType":"string",
                "href":"string"
            }
        ],
        "id":"string",
        "updatedDate":{
        },
        "type":"string",
        "fields":{
            "additionalProp1":{
            },
            "additionalProp3":{
            },
            "additionalProp2":{
            }
        },
        "slug":{
        }
    }
]

400 Response

Error returned when user provides invalid input for parameters.
Body ()
Root Schema : listCECContent_invalidParameterValueResponse
Type: object
Show Source
Example Response (application/json)
{
    "errorCode":10002,
    "message":"The value 'empty' for parameter 'limit' is invalid",
    "status":400
}

409 Response

Error returned when user has not enabled CEC Integration.
Body ()
Root Schema : listCECContent_integrationDisabledResponse
Type: object
Show Source
Example Response (application/json)
{
    "errorCode":0,
    "message":"CEC Integration is not enabled",
    "status":409
}

Default Response

The error response
Body ()
Root Schema : errorModel
Type: object
Show Source
Nested Schema : errors
Type: array
An optional list of errors if multiple errors were encountered
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top