Skip to main content

List System Group Membership

This endpoint returns all Systems that are a member of this System Group.

Sample Request

curl -X GET https://console.jumpcloud.com/api/v2/systemgroups/{Group_ID/membership \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-H 'x-api-key: {API_KEY}'

Basic Parameters

ParameterDescription
FilterA filter to apply to the query.Filter structure: <field>:<operator>:<value>.field = Populate with a valid field from an endpoint response.operator = Supported operators are: eq, ne, gt, ge, lt, le, between, search, in.Note: v1 operators differ from v2 operators.value = Populate with the value you want to search for. Is case sensitive. Supports wild cards.EX: GET /api/v2/groups?filter=name:eq:Test+Group.
Group IDObjectID of the System Group.
LimitThe number of records to return at once. Limited to 100.

Advanced Parameters

ParameterDescription
Organization IDOrganization identifier that can be obtained from console settings.
SkipThe offset into the records to return.
SortThe comma separated fields used to sort the collection.Default sort is ascending, prefix with - to sort descending.

Example Output

[
{
"compiledAttributes": {},
"id": "Object ID of this graph object.",
"paths": [
[
{
"attributes": {},
"from": {
"attributes": {},
"id": "The ObjectID of the graph object.",
"type": "The type of graph object."
},
"to": {
"attributes": {},
"id": "The ObjectID of the graph object.",
"type": "The type of graph object."
}
}
]
],
"type": "A graph object type."
}
]

Workflow Library Example

List System Group Membership with Jumpcloud and Send Results Via Email

Workflow LibraryPreview this Workflow on desktop