get_shelf
Retrieve detailed information about a specific BookStack shelf, including its contained books, by providing the shelf ID.
Instructions
Get details of a specific shelf including its books
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Shelf ID |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "Shelf ID",
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}