White Papers
9 End to End Automation with REST API in Dell EMC OpenManage Enterprise 3.0
The following screen shot shows that there are 72 devices.
Screen shot showing 72 devices
Note—The following is a simple Python script to list devices.
• One use-case would be to filter the device list by a certain type of devices (say, by Type = Chassis).
This can be done using the filter options.
https://IP/api/DeviceService/Devices?$filter=Type eq 2000 would return a list of
Chassis devices.
• Another use-case is to figure out which of the devices are powered on. The following query can help
in this case. https://IP/api/DeviceService/Devices?$filter=PowerState eq 2 would
return a list of devices that are turned on.