API Guide

Table Of Contents
"@odata.count": 1,
"value": [
{
"DeviceType": 1000,
"TotalCount": 55,
"GroupDevicesStatusSummary": [
{
"StatusType": 1000,
"Count": 29
},
{
"StatusType": 2000,
"Count": 5
},
{
"StatusType": 3000,
"Count": 4
},
{
"StatusType": 4000,
"Count": 17
},
{
"StatusType": 5000,
"Count": 0
}
]
}
]
}
Table 93. Attributes
Attribute name Description
Id ID of the group.
/api/GroupService/Groups(Id)/SubGroups
This URI represents the subgroups of a specific group.
GET method for SubGroups
This method returns the list of subgroups of a specific group.
Description
Returns the list of subgroups.
Privilege VIEW
HTTP response
codes
200
Example
Input:
Output:
{
"@odata.context": "$metadata#Collection(GroupService.Group)",
"@odata.count": 1,
"value": [
{
"@odata.id": "/api/GroupService/Groups(19164)",
"Id": 19164,
"Name": "Test Group2",
"Description": "Test Group1",
"GlobalStatus": 0,
Groups 223