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

NameDescriptionTypeAdditional information
ElevatorReaderId

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

ElevatorReaderViewModel
NameDescriptionTypeAdditional 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": "1b224a39-a127-41d6-8f7f-e22bcc6ce08d",
  "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>1b224a39-a127-41d6-8f7f-e22bcc6ce08d</ElevatorReaderId>
  <Name>sample string 2</Name>
</ElevatorReaderViewModel>