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
ElevatorReaderViewModelName | 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": "b0a1394f-4a44-41d8-b588-4cf5a3703aa9", "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>b0a1394f-4a44-41d8-b588-4cf5a3703aa9</ElevatorReaderId> <Name>sample string 2</Name> </ElevatorReaderViewModel>