delete_group
Remove a specific group from the Keycloak identity and access management system. Specify the group ID and optionally the target realm to execute the deletion and receive a status confirmation.
Instructions
Delete a group.
Args:
group_id: Group ID
realm: Target realm (uses default if not specified)
Returns:
Status message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
group_id | Yes | ||
realm | No |
Input Schema (JSON Schema)
{
"properties": {
"group_id": {
"title": "Group Id",
"type": "string"
},
"realm": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Realm"
}
},
"required": [
"group_id"
],
"title": "delete_groupArguments",
"type": "object"
}