delete_chapter
Remove a chapter by moving it to the recycle bin using its ID, enabling content management in BookStack wiki instances.
Instructions
Delete a chapter (moves to recycle bin)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Chapter ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Chapter ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}