Example: Devices XML File

An example of an exported XML file containing a device and device group. Exported XML files for all entities look similar, containing the tags specific to that entity.

The first half of following example is for a device group. The second half is for a device in that device group.
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<Devices>
<Device action="InsertOrUpdate">
<SerialNumber>1</SerialNumber>
<DeviceName>Device Group 1</DeviceName>
<Description />
<deviceType>0</deviceType>
<enableFlag>1</enableFlag>
<isGroup>1</isGroup>
<applianceIp>127.0.0.1</applianceIp>
<dnsRefresh>0</dnsRefresh>
<devices>
<Device action="InsertOrUpdate">
<SerialNumber>1</SerialNumber>
<DeviceName>Individual Device - Switch #4</DeviceName>
<Description />
<deviceType>1</deviceType>
<enableFlag>1</enableFlag>
<isGroup>0</isGroup>
<applianceIp>127.0.0.1</applianceIp>
<dnsRefresh>0</dnsRefresh>
<deviceIp>1.2.3.4</deviceIp>
</Device>
</devices>
</Device>
</Devices>