GET api/v1/AirportsMaster/{id}
Retrieves the IATA airport identified by id. Where id is IATA airport code.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| id |
Define this parameter in the request URI. |
Response Information
Response body formats
application/json, text/json
Sample:
{
"Code": "sample string 1",
"Name": "sample string 1 - sample string 2 (sample string 3)",
"Location": {
"lat": 1.1,
"lng": 2.1
}
}
application/xml, text/xml
Sample:
<AirportsMasterDTO>
<Code>sample string 1</Code>
<Name>sample string 1 - sample string 2 (sample string 3)</Name>
<Location>
<lat>1.1</lat>
<lng>2.1</lng>
</Location>
</AirportsMasterDTO>