GET api/v1/NetworkModuleDevices

Returns all network module devices

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of NetworkModuleDevice
NameDescriptionTypeAdditional 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": "0ad07332-b3e5-482b-bcff-b9bf5d092c5a",
    "Name": "sample string 2",
    "NetworkModuleDevice_ID": "ba8c503d-d78e-4955-8c67-164d24d300c1",
    "SerialNo": "sample string 4",
    "SoftwareVersion": "sample string 5",
    "Type": 0
  },
  {
    "FProgKey_ID": "0ad07332-b3e5-482b-bcff-b9bf5d092c5a",
    "Name": "sample string 2",
    "NetworkModuleDevice_ID": "ba8c503d-d78e-4955-8c67-164d24d300c1",
    "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>0ad07332-b3e5-482b-bcff-b9bf5d092c5a</FProgKey_ID>
    <Name>sample string 2</Name>
    <NetworkModuleDevice_ID>ba8c503d-d78e-4955-8c67-164d24d300c1</NetworkModuleDevice_ID>
    <SerialNo>sample string 4</SerialNo>
    <SoftwareVersion>sample string 5</SoftwareVersion>
    <Type>Unknown</Type>
  </NetworkModuleDevice>
  <NetworkModuleDevice>
    <FProgKey_ID>0ad07332-b3e5-482b-bcff-b9bf5d092c5a</FProgKey_ID>
    <Name>sample string 2</Name>
    <NetworkModuleDevice_ID>ba8c503d-d78e-4955-8c67-164d24d300c1</NetworkModuleDevice_ID>
    <SerialNo>sample string 4</SerialNo>
    <SoftwareVersion>sample string 5</SoftwareVersion>
    <Type>Unknown</Type>
  </NetworkModuleDevice>
</ArrayOfNetworkModuleDevice>