deletePage
Remove a specific page from Adobe Experience Manager by specifying the page path, with an optional force flag to bypass restrictions. Streamlines page deletion using REST/JSON-RPC APIs.
Instructions
Delete a page from AEM
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | ||
pagePath | Yes |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"type": "boolean"
},
"pagePath": {
"type": "string"
}
},
"required": [
"pagePath"
],
"type": "object"
}