list_group_members
Retrieve all members of a GitLab group, including inherited members, by specifying group ID, pagination, and optional search query for precise results.
Instructions
List all members of a GitLab group (including inherited members)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| group_id | No | ||
| page | No | ||
| per_page | No | ||
| query | No |
Input Schema (JSON Schema)
{
"properties": {
"group_id": {
"type": "string"
},
"page": {
"type": "number"
},
"per_page": {
"type": "number"
},
"query": {
"type": "string"
}
},
"type": "object"
}