list_pages
Retrieve a paginated list of pages available in BookStack, with options to sort results and control the number of items displayed per page.
Instructions
Get a listing of pages visible to the user
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of items per page | |
| page | No | Page number for pagination | |
| sort | No | Sort parameter |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of items per page",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
},
"sort": {
"description": "Sort parameter",
"type": "string"
}
},
"type": "object"
}