GET api/v1/NetworkModuleDeviceRelays/{id}

Returns information about specific network module device relay

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

network module device relay id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

NetworkModuleDeviceRelay
NameDescriptionTypeAdditional information
InUse

Is relay in use

integer

None.

Name

Name

string

None.

NetworkModuleDevice_ID

Network module device ID

globally unique identifier

None.

NetworkModuleDeviceRelay_ID

Relay ID

globally unique identifier

None.

RelayNo

Relay number

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "InUse": 1,
  "Name": "sample string 2",
  "NetworkModuleDevice_ID": "803d2b0b-77ab-464f-8488-815378c56536",
  "NetworkModuleDeviceRelay_ID": "12baa3a8-3bb7-41ea-a5b8-0336055fdf1e",
  "RelayNo": 5
}

application/xml, text/xml

Sample:
<NetworkModuleDeviceRelay xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iloq.manager.server.bus">
  <InUse>1</InUse>
  <Name>sample string 2</Name>
  <NetworkModuleDeviceRelay_ID>12baa3a8-3bb7-41ea-a5b8-0336055fdf1e</NetworkModuleDeviceRelay_ID>
  <NetworkModuleDevice_ID>803d2b0b-77ab-464f-8488-815378c56536</NetworkModuleDevice_ID>
  <RelayNo>5</RelayNo>
</NetworkModuleDeviceRelay>