API Guide
Table 96. Filters(continued)
Attribute name Description
Type Filter by group type.
MembershipType Filter by group membership type.
GlobalStatus Filter by group global status.
DefinitionId Filter by group definition ID.
DefinitionDescription Filter by group definition description.
Visible Filter by group visibility.
CreatedBy Filter by the entity that created the group.
UpdatedBy Filter by the entity that updated the group.
CreationTimeBegin Filter by the start-time when the group was created.
CreationTimeEnd Filter by the end-time when the group was created.
UpdatedTimeBegin Filter by the start-time when the group was updated.
UpdatedTimeEnd Filter by the end-time when the group was updated.
/api/GroupService/Groups(Id)
This URI represents a specific group within the collection.
GET method for Groups(Id)
This method returns the details of a group within the collection.
Description
Returns the details of a group
Privilege VIEW
HTTP response
codes
200
Example
Input:
Output:
{
"@odata.context": "$metadata#GroupService.Group/$entity",
"@odata.id": "/api/GroupService/Groups(64)",
"Id": 64,
"Name": "All Devices",
"Description": "Group associated to all devices.",
"GlobalStatus": 5000,
"ParentId": 0,
"CreationTime": "2017-06-08 18:48:27.069",
"UpdatedTime": "2017-06-08 21:15:01.746",
"CreatedBy": "system",
"UpdatedBy": "",
"Visible": true,
"DefinitionId": 500,
"DefinitionDescription": "Root group for all Types of Devices.",
"TypeId": 2000,
"MembershipTypeId": 24,
"Devices": [
{
"@odata.id": "/api/GroupService/Groups(64)/Devices"
}
],
"AllLeafDevices": [
Groups 223