GET api/v1/Readers/ElevatorReaders
Returns a list of ElevatorReaderViewModels that the API token has rights to view
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of ElevatorReaderViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ElevatorReaderId |
Represents the PK of the Reader |
globally unique identifier |
None. |
| Name |
Represents the name of the Reader |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ElevatorReaderId": "4619760c-420e-4e31-b7c4-9035868614c6",
"Name": "sample string 2"
},
{
"ElevatorReaderId": "4619760c-420e-4e31-b7c4-9035868614c6",
"Name": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfElevatorReaderViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
<ElevatorReaderViewModel>
<ElevatorReaderId>4619760c-420e-4e31-b7c4-9035868614c6</ElevatorReaderId>
<Name>sample string 2</Name>
</ElevatorReaderViewModel>
<ElevatorReaderViewModel>
<ElevatorReaderId>4619760c-420e-4e31-b7c4-9035868614c6</ElevatorReaderId>
<Name>sample string 2</Name>
</ElevatorReaderViewModel>
</ArrayOfElevatorReaderViewModel>