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": "3c3cc59c-5988-452f-b177-da14d75045c4", "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>3c3cc59c-5988-452f-b177-da14d75045c4</ElevatorReaderId> <Name>sample string 2</Name> </ElevatorReaderViewModel>