API Guide

Example
Input:
Output:
{
"@odata.context": "$metadata#DeviceService.LogSeverities/$entity",
"@odata.id": "/api/DeviceService/Devices(3265)/LogSeverities",
"Warning": 2000,
"Critical": 3000,
"Fatal": 4000,
"Info": 1000
}
NOTE: The severity "Unknown": 5000 is not displayed by REST. To view logs in Unknown state, use the web interface.
/api/DeviceService/Devices(Id)/Settings
This URI represents the settings of a specific device.
GET method for Settings
This method returns the details of the settings of a specific device.
Description Returns the details of the settings of a specific device.
Privilege VIEW
HTTP response
codes
200
Example
Input:
Output:
{
"@odata.context": "$metadata#Collection(DeviceService.DeviceSetting)",
"@odata.count": 2,
"value": [
{
"@odata.id": "/api/DeviceService/Devices(3265)/Settings('Network')",
"SettingType": "Network"
},
{
"@odata.id": "/api/DeviceService/Devices(3265)/Settings('Management')",
"SettingType": "Management"
}
]
}
/api/DeviceService/Devices(Id)/Settings('Type')
This URI represents a specific type of setting for a device.
The settings differ depending on the type of device. To see the list of available settings, use the Get method on the Device(Id)/Settings
URI. Following are the possible URIs:
api/DeviceService/Devices(25035)/Settings('Network')
api/DeviceService/Devices(25035)/Settings('Monitoring')
api/DeviceService/Devices(25035)/Settings('Management')
api/DeviceService/Devices(25031)/Settings('Power')
api/DeviceService/Devices(25031)/Settings('Location')
api/DeviceService/Devices(25031)/Settings('LocalAccessConfiguration')
api/DeviceService/Devices(25031)/Settings('NetworkServices')
api/DeviceService/Devices(25031)/Settings('ServerQuickDeploy')
200
Devices