list_group_users
Retrieve and manage users within a specific group in Okta by providing the group ID, with options for pagination and limiting results for efficient user management.
Instructions
List all users in a specific group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
after | No | Cursor for pagination, obtained from previous response | |
groupId | Yes | ID of the group | |
limit | No | Maximum number of users to return (default: 50, max: 200) |
Input Schema (JSON Schema)
{
"properties": {
"after": {
"description": "Cursor for pagination, obtained from previous response",
"type": "string"
},
"groupId": {
"description": "ID of the group",
"type": "string"
},
"limit": {
"description": "Maximum number of users to return (default: 50, max: 200)",
"type": "number"
}
},
"required": [
"groupId"
],
"type": "object"
}