v1

latestOpenAPI 3.1.02026-07-242470655.6 KB

Duplicate Page

Duplicate an existing Page of a Site.

post/sites/multiscreen/{site_name}/pages/{page_uuid}/duplicate

Path parameters

site_namestring required

The unique identifier of the target Site.

page_uuidstring required

The uuid of the target page.

Request body

draft_status'STAGED_DRAFT' | 'DRAFT'
header_htmlstring

The new page header HTML to assign to the page.

pathstring
titlestring

The title to assign to the new page.

Response

200

draft_statusstring
header_htmlstring
pathstring
titlestring
typestring
uuidstring

Example response

{
  "draft_status": "DRAFT",
  "header_html": "<script>console.log('woo')</script>",
  "path": "about/abab",
  "seo": {
    "og_image": "https://example.org/path/to/image.png",
    "title": "About Page"
  },
  "title": "ABOUT",
  "type": "REGULAR",
  "uuid": "string"
}