delete_staging_site
Remove staging sites from the Kapiti CMS platform by specifying content and staging site IDs, with optional reason documentation for deletion tracking.
Instructions
Delete a staging site
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contentSiteId | Yes | Content Site ID | |
reason | No | Reason for deletion | |
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"
},
"reason": {
"description": "Reason for deletion",
"type": "string"
},
"stagingSiteId": {
"description": "Staging Site ID",
"type": "string"
}
},
"required": [
"contentSiteId",
"stagingSiteId"
],
"type": "object"
}