assign_user_to_group
Assign a specific user to a designated group within Okta’s user management system to streamline access and permissions.
Instructions
Assign a user to a group in Okta
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupId | Yes | ID of the group | |
userId | Yes | ID of the user to assign to the group |
Input Schema (JSON Schema)
{
"properties": {
"groupId": {
"description": "ID of the group",
"type": "string"
},
"userId": {
"description": "ID of the user to assign to the group",
"type": "string"
}
},
"required": [
"groupId",
"userId"
],
"type": "object"
}