update_page
Modify existing BookStack wiki pages by updating content, metadata, or structure. Change page name, HTML/markdown content, tags, priority, or move pages between books/chapters using the page ID.
Instructions
Update an existing page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| book_id | No | Move to different book ID | |
| chapter_id | No | Move to different chapter ID | |
| html | No | Page content in HTML format | |
| id | Yes | Page ID | |
| markdown | No | Page content in Markdown format | |
| name | No | Page name (max 255 chars) | |
| priority | No | Page priority/order | |
| tags | No | Array of tags with name and value |
Input Schema (JSON Schema)
{
"properties": {
"book_id": {
"description": "Move to different book ID",
"type": "number"
},
"chapter_id": {
"description": "Move to different chapter ID",
"type": "number"
},
"html": {
"description": "Page content in HTML format",
"type": "string"
},
"id": {
"description": "Page ID",
"type": "number"
},
"markdown": {
"description": "Page content in Markdown format",
"type": "string"
},
"name": {
"description": "Page name (max 255 chars)",
"type": "string"
},
"priority": {
"description": "Page priority/order",
"type": "number"
},
"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"
}