Sitecore API catalog/Pages API//
- Add a page version
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
Create a page from blueprint
Save a page layout
Save page fields
Duplicate a page
Rename a page
Translate a page
Delete a version of a page
Add a page version
Creates a new version of a page.
Security
Bearer
Input data containing properties of the page for which to create a new version.
The base version number to create the new version from. Example value: 1
Example:1
- Production serverhttps://xmapps-api.sitecorecloud.io/api/v1/pages/{pageId}/version
- 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/8f0b81bc-7388-46be-b109-6e73d1114470/version?environmentId=main' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"language": "en-US",
"site": "my-site",
"baseVersion": 1,
"versionName": "Black Friday content update"
}'