API Guide

/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')
api/DeviceService/Devices(25031)/Settings('IOMQuickDeploy')
api/DeviceService/Devices(25031)/Settings('FIPSMode')
GET method for Settings('Type')
This method returns the available attributes under a specific setting type.
Description Returns the available attributes under a specific setting type.
Privilege VIEW
HTTP response
codes
200
Example
Example for network settings for IOM
Input:
Output:
{
"@odata.context": "/api/$metadata#DeviceService.DeviceSetting/$entity",
"@odata.type": "#DeviceService.DeviceSetting",
"@odata.id": "/api/DeviceService/Devices(25773)/Settings('Network')",
"SettingType": "Network",
"MgmtVLANId": "",
"EnableMgmtVLANId": false,
"IomIPv4Settings":
{
"EnableIPv4": true,
"EnableDHCP": true,
"StaticIPAddress": "10.35.176.185",
"StaticSubnetMask": "255.255.255.0",
"StaticGateway": "10.35.176.1"
},
"IomIPv6Settings":
{
"EnableIPv6": false,
"StaticIPv6Address": "::",
"StaticPrefixLength": "0",
"StaticGateway": "::",
"UseDHCPv6": false
},
"IomDNSSettings":
{
"PrimaryDNS": "",
"SecondaryDNS": "",
"TertiaryDNS": ""
Devices
189