Sitecore API catalog/Pages API//
- Create a page from blueprint
Retrieve a page
Update field values
Delete a page
Retrieve a page state
Search for pages
Retrieve insert options
Retrieve page versions
Add a version to a page
List live variant identifiers for a page
Check if a page is published to Edge
Create a page
Save a page layout
Save page fields
Duplicate a page
Rename a page
Add a page version
Translate a page
Delete a version of a page
Create a page from bluepr...
Creates a new page from an existing blueprint.
Security
Bearer
Input data containing properties of the page
The identifier of the blueprint to be used for the new page. Example value: 2341ef32-42f4-4537-98d8-9ef741008eab
Example:"2341ef32-42f4-4537-98d8-9ef741008eab"
The system name of the new page. Example value: about-us
Example:"about-us"
The identifier of the parent page. Example value: 9100b830-c85b-459b-9c37-51da74fc9ecc
Example:"9100b830-c85b-459b-9c37-51da74fc9ecc"
- Production serverhttps://xmapps-api.sitecorecloud.io/api/v1/pages/blueprint
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- application/json
- text/json
- application/*+json
curl -i -X POST \
'https://xmapps-api.sitecorecloud.io/api/v1/pages/blueprint?environmentId=main' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"parentId": "9100b830-c85b-459b-9c37-51da74fc9ecc",
"pageName": "about-us",
"blueprintId": "2341ef32-42f4-4537-98d8-9ef741008eab",
"language": "en-US",
"displayName": "About Us"
}'