Check if a page is published to Edge

Request

Checks if the requested page is published to Edge.

Security
Bearer
Path
pageIdstringrequired

The page identifier.

Example:8f0b81bc-7388-46be-b109-6e73d1114470
Query
languagestringrequired

The page language.

Example:language=en-US
environmentIdstring

The identifier of the environment.

Example:environmentId=main
curl -i -X GET \
  'https://xmapps-api.sitecorecloud.io/api/v1/pages/8f0b81bc-7388-46be-b109-6e73d1114470/live?language=en-US&environmentId=main' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Success

Bodyapplication/json
idstring or null

The identifier of the page. Example value: 110d559f-dea5-42ea-9c1c-8a5df7e70ef9

Example:"110d559f-dea5-42ea-9c1c-8a5df7e70ef9"
namestring or null

The name of the page. Example value: Home

Example:"Home"
displayNamestring or null

The display name of the page. Example value: Home Page

Example:"Home Page"
pathstring or null

The path of the page. Example value: /home

Example:"/home"
languagestring or null

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

Example:"en-US"
versioninteger, (int32)

The version number of the page. Example value: 1

Example:1
personalizationobject(Personalization)

Represents personalization settings for a page.

urlobject(Url)

The URL information for a page.

Response
{ "id": "110d559f-dea5-42ea-9c1c-8a5df7e70ef9", "name": "Home", "displayName": "Home Page", "path": "/home", "language": "en-US", "version": 1, "personalization": { "variantIds": [ … ] }, "url": { "hostName": "www.skate-park.com", "path": "/products/item1", "scheme": "https" } }