delete_shelf
Remove a shelf from the BookStack wiki by moving it to the recycle bin using its unique ID.
Instructions
Delete a shelf (moves to recycle bin)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Shelf ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Shelf ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}