list_images
Retrieve a paginated listing of gallery images from BookStack, with options to filter by type (gallery or drawio) and sort results.
Instructions
Get a listing of images in the gallery
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of items per page | |
| filter_type | No | Filter images by type | |
| page | No | Page number for pagination | |
| sort | No | Sort parameter |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of items per page",
"type": "number"
},
"filter_type": {
"description": "Filter images by type",
"enum": [
"gallery",
"drawio"
],
"type": "string"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"sort": {
"description": "Sort parameter",
"type": "string"
}
},
"type": "object"
}