GET v1/pages/content/{id}/carousel-pages

Use this method to get all carousel pages for a content element.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Content element

string

Required

Body Parameters

None.

Response Information

Resource Description

Returns a collection of carousel pages associated to the specified content element id.

Collection of CarouselPage
NameDescriptionTypeAdditional information
id

Unique identifier.

string

None.

carousel

Carousel Id

string

None.

page

Page displayed by the carousel

string

None.

order

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": "sample string 1",
    "carousel": "sample string 2",
    "page": "sample string 3",
    "order": 1
  },
  {
    "id": "sample string 1",
    "carousel": "sample string 2",
    "page": "sample string 3",
    "order": 1
  }
]