get /groups/{id}/users

Gets the users in a group.

Returns the list of users for the specified group.

Path parameters

id (required)
The ID of the group.

Query parameters

offset (optional)
The number of entries to skip. Default is 0.
limit (optional)
The maximum number of entries to return. Default is 50.

Return type

GuidListResponse

Example data

Content-Type: application/json

{ "data" : { "totalItems" : 0, "offset" : 6, "limit" : 1, "items" : [ "00000000-0000-0000-0000-000000000000" ] } }

Responses

200
Success. The list of users for the specified group is returned.

400
One of the following errors has occurred:There is an invalid parameter in query string.The specified ID is not a valid GUID.

404
The specified ID was not found.