Actions
List User Group Members
This endpoint returns the user members of a User Group.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET https://console.jumpcloud.com/api/v2/usergroups/{GroupID}/members \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-api-key: {API_KEY}'
| Parameter | Description |
|---|---|
| Group ID | ObjectID of the User Group. |
| Limit | The number of records to return at once. Limited to 100. |
| Skip | The offset into the records to return. |
| Parameter | Description |
|---|---|
| Organization ID | Organization identifier that can be obtained from console settings. |
[
{
"attributes": {},
"from": {
"attributes": {},
"id": "string",
"type": "string"
},
"to": {
"attributes": {},
"id": "string",
"type": "string"
}
}
]
Was this page helpful?