delete_realm_role
Remove a specific role from a Keycloak realm by providing the role name and optional realm. Streamline role management and access control with this targeted deletion tool.
Instructions
Delete a realm role.
Args:
role_name: Role name to delete
realm: Target realm (uses default if not specified)
Returns:
Status message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
realm | No | ||
role_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
},
"role_name": {
"title": "Role Name",
"type": "string"
}
},
"required": [
"role_name"
],
"title": "delete_realm_roleArguments",
"type": "object"
}