How can I get a device list and status through REST
CAPM 20.2, 21.2
Do a "POST" against the following URL:
http://<DA>:8581/rest/devices/manageable/filtered
Where the "Body" has the following syntax
<FilterSelect xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="filter.xsd">
<Filter>
<Device.ContactStatus type ="EQUAL">MANAGEMENT_LOST</Device.ContactStatus>
</Filter>
<Select use="exclude" isa="include">
<Item use="exclude">
<Name use="include"/>
<CreateTime use="include"/>
</Item>
<Device use="exclude">
<PrimaryIPAddress use="include"/>
<ContactStatus use="include"/>
</Device>
</Select>
</FilterSelect>