GET api/v1/AirValuesMaster/{id}

Retrieves an array of air values identified by id. Where id is identifier.

Request Information

Parameters

NameDescriptionAdditional information
id
Key identified

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "TheID": 1,
    "KeyIdentifier": "sample string 2",
    "KeyValue": "sample string 3",
    "KeyDescription": "sample string 4"
  },
  {
    "TheID": 1,
    "KeyIdentifier": "sample string 2",
    "KeyValue": "sample string 3",
    "KeyDescription": "sample string 4"
  },
  {
    "TheID": 1,
    "KeyIdentifier": "sample string 2",
    "KeyValue": "sample string 3",
    "KeyDescription": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfAirValuesMasterDTO>
  <AirValuesMasterDTO>
    <TheID>1</TheID>
    <KeyIdentifier>sample string 2</KeyIdentifier>
    <KeyValue>sample string 3</KeyValue>
    <KeyDescription>sample string 4</KeyDescription>
  </AirValuesMasterDTO>
  <AirValuesMasterDTO>
    <TheID>1</TheID>
    <KeyIdentifier>sample string 2</KeyIdentifier>
    <KeyValue>sample string 3</KeyValue>
    <KeyDescription>sample string 4</KeyDescription>
  </AirValuesMasterDTO>
  <AirValuesMasterDTO>
    <TheID>1</TheID>
    <KeyIdentifier>sample string 2</KeyIdentifier>
    <KeyValue>sample string 3</KeyValue>
    <KeyDescription>sample string 4</KeyDescription>
  </AirValuesMasterDTO>
</ArrayOfAirValuesMasterDTO>