Aggregate page data

Request

Aggregates data about multiple pages and their components.

Security
Bearer
Body

The collection of pages, by their identifier and language, for which to get data.

Array [
idstring, non-emptyrequired

The page identifier. Example value: 8f0b81bc-7388-46be-b109-6e73d1114470

Example:"8f0b81bc-7388-46be-b109-6e73d1114470"
languagestring, non-emptyrequired

The language of the page. Example value: en-US

Example:"en-US"
]
curl -i -X POST \
  https://xmapps-api.sitecorecloud.io/api/v1/aggregation/pages \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '[
    {
      "id": "8f0b81bc-7388-46be-b109-6e73d1114470",
      "language": "en-US"
    }
  ]'

Responses

Success

Bodyapplication/json
pagesArray of objects or null(PageAggregationResponse)
Response
{ "pages": [ { … } ] }