GET api/VFDIOCommunicationCard/GetAllVFDIOCardData
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of VFD_IO_Communication_Card| Name | Description | Type | Additional information |
|---|---|---|---|
| SrNo | integer |
None. |
|
| Drive_Model_Choices | string |
None. |
|
| Digital_Input | integer |
None. |
|
| Digital_Output | integer |
None. |
|
| Analog_Input | integer |
None. |
|
| Analog_Output | integer |
None. |
|
| Active | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"SrNo": 1,
"Drive_Model_Choices": "sample string 2",
"Digital_Input": 1,
"Digital_Output": 1,
"Analog_Input": 1,
"Analog_Output": 1,
"Active": true
},
{
"SrNo": 1,
"Drive_Model_Choices": "sample string 2",
"Digital_Input": 1,
"Digital_Output": 1,
"Analog_Input": 1,
"Analog_Output": 1,
"Active": true
}
]
application/xml, text/xml
Sample:
<ArrayOfVFD_IO_Communication_Card xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LegioWebAPI.Models">
<VFD_IO_Communication_Card>
<Active>true</Active>
<Analog_Input>1</Analog_Input>
<Analog_Output>1</Analog_Output>
<Digital_Input>1</Digital_Input>
<Digital_Output>1</Digital_Output>
<Drive_Model_Choices>sample string 2</Drive_Model_Choices>
<SrNo>1</SrNo>
</VFD_IO_Communication_Card>
<VFD_IO_Communication_Card>
<Active>true</Active>
<Analog_Input>1</Analog_Input>
<Analog_Output>1</Analog_Output>
<Digital_Input>1</Digital_Input>
<Digital_Output>1</Digital_Output>
<Drive_Model_Choices>sample string 2</Drive_Model_Choices>
<SrNo>1</SrNo>
</VFD_IO_Communication_Card>
</ArrayOfVFD_IO_Communication_Card>