get_page
Retrieve detailed information and content from a specific BookStack wiki page using its unique ID to access documentation, articles, or knowledge base entries.
Instructions
Get details and content of a specific page
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Page ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Page ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}