list_realm_roles
Retrieve a list of realm roles with pagination, search, and realm-specific filtering options for efficient Keycloak role management.
Instructions
List all realm roles.
Args:
first: Pagination offset
max: Maximum results size
search: Search string
realm: Target realm (uses default if not specified)
Returns:
List of realm roles
Input Schema
Name | Required | Description | Default |
---|---|---|---|
first | No | ||
max | No | ||
realm | No | ||
search | No |
Input Schema (JSON Schema)
{
"properties": {
"first": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "First"
},
"max": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Max"
},
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
},
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Search"
}
},
"title": "list_realm_rolesArguments",
"type": "object"
}