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