update_book
Modify an existing book's details including name, description, tags, and default template in BookStack wiki instances through API integration.
Instructions
Update an existing book
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| default_template_id | No | Default template ID for new pages | |
| description | No | Book description (plain text) | |
| description_html | No | Book description (HTML format) | |
| id | Yes | Book ID | |
| name | No | Book name (max 255 chars) | |
| tags | No | Array of tags with name and value |
Input Schema (JSON Schema)
{
"properties": {
"default_template_id": {
"description": "Default template ID for new pages",
"type": "number"
},
"description": {
"description": "Book description (plain text)",
"type": "string"
},
"description_html": {
"description": "Book description (HTML format)",
"type": "string"
},
"id": {
"description": "Book ID",
"type": "number"
},
"name": {
"description": "Book name (max 255 chars)",
"type": "string"
},
"tags": {
"description": "Array of tags with name and value",
"items": {
"properties": {
"name": {
"type": "string"
},
"order": {
"type": "number"
},
"value": {
"type": "string"
}
},
"required": [
"name",
"value"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"id"
],
"type": "object"
}