API Guide

Table Of Contents
{
"GlobalStatus": 1000,
"Name": "NORMAL",
"Description": "The device is running normal."
},
{
"GlobalStatus": 2000,
"Name": "UNKNOWN",
"Description": "Status is not determined."
},
{
"GlobalStatus": 3000,
"Name": "WARNING",
"Description": "The device has warning state."
},
{
"GlobalStatus": 4000,
"Name": "CRITICAL",
"Description": "The device is in critical state."
},
{
"GlobalStatus": 5000,
"Name": "NOSTATUS",
"Description": "The device/group does not have a valid status."
}
]
}
/api/DeviceService/DeviceType
This URI represents the device types.
GET method for DeviceType
This method returns a list of devices types.
Description
Returns a list of devices types.
Privilege VIEW
HTTP response
codes
200
Example
Input:
Output:
{
"@odata.context": "$metadata#Collection(DeviceService.DeviceType)",
"@odata.count": 6,
"value": [
{
"DeviceType": 1000,
"Name": "SERVER",
"Description": "Server Device"
},
{
"DeviceType": 2000,
"Name": "CHASSIS",
"Description": "Chassis Device"
},
{
"DeviceType": 9000,
"Name": "NETWORK_CONTROLLER",
"Description": "NETWORK CONTROLLER Device"
},
{
Devices 203