GET api/v1/NetworkModules/{id}/NetworkModuleDevices
Returns network module devices which belong to given Network Module
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
Network module ID |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of NetworkModuleDeviceName | Description | Type | Additional information |
---|---|---|---|
FProgKey_ID |
Network module ID |
globally unique identifier |
None. |
Name |
Device name |
string |
None. |
NetworkModuleDevice_ID |
ID |
globally unique identifier |
None. |
SerialNo |
Serial number |
string |
None. |
SoftwareVersion |
Software version |
string |
None. |
Type |
Type |
NetworkModuleDeviceType |
None. |
Response Formats
application/json, text/json
Sample:
[ { "FProgKey_ID": "c5c9d1f4-6965-4c69-88c2-76916e1c5f21", "Name": "sample string 2", "NetworkModuleDevice_ID": "7862748d-26ae-4cd8-b7f6-62ad86a8fb8e", "SerialNo": "sample string 4", "SoftwareVersion": "sample string 5", "Type": 0 }, { "FProgKey_ID": "c5c9d1f4-6965-4c69-88c2-76916e1c5f21", "Name": "sample string 2", "NetworkModuleDevice_ID": "7862748d-26ae-4cd8-b7f6-62ad86a8fb8e", "SerialNo": "sample string 4", "SoftwareVersion": "sample string 5", "Type": 0 } ]
application/xml, text/xml
Sample:
<ArrayOfNetworkModuleDevice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iloq.manager.server.bus"> <NetworkModuleDevice> <FProgKey_ID>c5c9d1f4-6965-4c69-88c2-76916e1c5f21</FProgKey_ID> <Name>sample string 2</Name> <NetworkModuleDevice_ID>7862748d-26ae-4cd8-b7f6-62ad86a8fb8e</NetworkModuleDevice_ID> <SerialNo>sample string 4</SerialNo> <SoftwareVersion>sample string 5</SoftwareVersion> <Type>Unknown</Type> </NetworkModuleDevice> <NetworkModuleDevice> <FProgKey_ID>c5c9d1f4-6965-4c69-88c2-76916e1c5f21</FProgKey_ID> <Name>sample string 2</Name> <NetworkModuleDevice_ID>7862748d-26ae-4cd8-b7f6-62ad86a8fb8e</NetworkModuleDevice_ID> <SerialNo>sample string 4</SerialNo> <SoftwareVersion>sample string 5</SoftwareVersion> <Type>Unknown</Type> </NetworkModuleDevice> </ArrayOfNetworkModuleDevice>