list_roles
Retrieve a paginated listing of user roles from the BookStack wiki system to manage permissions and access control.
Instructions
Get a listing of roles in the system
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"
}