GET api/v1/Readers/ElevatorReaders?ElevatorReaderId={ElevatorReaderId}
Returns a single ElevatorReaderViewModel that the API token has rights to view based on a parameterized PK.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ElevatorReaderId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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": "556d4db8-e083-45dc-adab-cba4918b75a3",
"Name": "sample string 2"
}
application/xml, text/xml
Sample:
<ElevatorReaderViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers"> <ElevatorReaderId>556d4db8-e083-45dc-adab-cba4918b75a3</ElevatorReaderId> <Name>sample string 2</Name> </ElevatorReaderViewModel>