delete_wiki_page
Remove outdated or incorrect wiki pages from Azure DevOps projects by specifying the project, wiki identifier, and page path.
Instructions
Deletes a wiki page by its path.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | The path of the wiki page to delete. | |
project | Yes | The name or ID of the project. | |
wiki_identifier | Yes | The name or ID of the wiki. |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "The path of the wiki page to delete.",
"type": "string"
},
"project": {
"description": "The name or ID of the project.",
"type": "string"
},
"wiki_identifier": {
"description": "The name or ID of the wiki.",
"type": "string"
}
},
"required": [
"project",
"wiki_identifier",
"path"
],
"type": "object"
}