clone_staging_site
Clone a staging site to create a new copy for testing or development purposes using specified content and staging site IDs.
Instructions
Clone a staging site
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contentSiteId | Yes | Content site ID | |
newName | No | Name for the cloned site | |
stagingSiteId | Yes | Staging site ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"contentSiteId": {
"description": "Content site ID",
"type": "string"
},
"newName": {
"description": "Name for the cloned site",
"type": "string"
},
"stagingSiteId": {
"description": "Staging site ID",
"type": "string"
}
},
"required": [
"contentSiteId",
"stagingSiteId"
],
"type": "object"
}