add-user-to-group
Assign a user to a specific group in Keycloak by specifying the realm, user ID, and group ID. Streamlines group management for organized user access and permissions.
Instructions
Add a user to a group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupId | Yes | ||
realm | Yes | ||
userId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"groupId": {
"type": "string"
},
"realm": {
"type": "string"
},
"userId": {
"type": "string"
}
},
"required": [
"realm",
"userId",
"groupId"
],
"type": "object"
}