get_chapter
Retrieve details for a specific chapter from BookStack, including its pages, by providing the chapter ID.
Instructions
Get details of a specific chapter including its pages
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Chapter ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Chapter ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}