GET api/v1/locations/{locationId}
Gets the location details.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| locationId |
The location identifier. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
LocationDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| LocationId | globally unique identifier |
None. |
|
| AirportFrequency | string |
String length: inclusive between 0 and 50 |
|
| CountryId | globally unique identifier |
Required |
|
| Description | string |
None. |
|
| Elevation | integer |
None. |
|
| ElevationUnitType | integer |
None. |
|
| IcaoCode | string |
String length: inclusive between 0 and 10 |
|
| Latitude | string |
String length: inclusive between 0 and 10 |
|
| LocationName | string |
Required String length: inclusive between 0 and 100 |
|
| LocationShortName | string |
String length: inclusive between 0 and 50 |
|
| LocationTypeId | globally unique identifier |
Required |
|
| Longitude | string |
String length: inclusive between 0 and 10 |
|
| RunwayDirection | string |
String length: inclusive between 0 and 50 |
|
| RunwayLength | integer |
None. |
|
| RunwayLengthUnitType | integer |
None. |
|
| IsInboundRouteRequired | boolean |
None. |
|
| IsOutboundRouteRequired | boolean |
None. |
|
| Id | globally unique identifier |
None. |
|
| CanUpdateRecord | boolean |
None. |
|
| CanDeleteRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"LocationId": "e25f7ddb-10e2-4203-9257-19eea5b57c8c",
"AirportFrequency": "sample string 2",
"CountryId": "6a1c461a-2def-4904-a535-37e632726468",
"Description": "sample string 4",
"Elevation": 1,
"ElevationUnitType": 1,
"IcaoCode": "sample string 5",
"Latitude": "sample string 6",
"LocationName": "sample string 7",
"LocationShortName": "sample string 8",
"LocationTypeId": "a5f48398-3eb3-4d42-b213-f95767605b28",
"Longitude": "sample string 10",
"RunwayDirection": "sample string 11",
"RunwayLength": 1,
"RunwayLengthUnitType": 1,
"IsInboundRouteRequired": true,
"IsOutboundRouteRequired": true,
"Id": "e25f7ddb-10e2-4203-9257-19eea5b57c8c",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"LocationId":"e25f7ddb-10e2-4203-9257-19eea5b57c8c","AirportFrequency":"sample string 2","CountryId":"6a1c461a-2def-4904-a535-37e632726468","Description":"sample string 4","Elevation":1,"ElevationUnitType":1,"IcaoCode":"sample string 5","Latitude":"sample string 6","LocationName":"sample string 7","LocationShortName":"sample string 8","LocationTypeId":"a5f48398-3eb3-4d42-b213-f95767605b28","Longitude":"sample string 10","RunwayDirection":"sample string 11","RunwayLength":1,"RunwayLengthUnitType":1,"IsInboundRouteRequired":true,"IsOutboundRouteRequired":true,"Id":"e25f7ddb-10e2-4203-9257-19eea5b57c8c","CanUpdateRecord":true,"CanDeleteRecord":true}
application/xml, text/xml
Sample:
<LocationDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Location"> <CanDeleteRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanDeleteRecord> <CanUpdateRecord xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">true</CanUpdateRecord> <Id xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi">e25f7ddb-10e2-4203-9257-19eea5b57c8c</Id> <AirportFrequency>sample string 2</AirportFrequency> <CountryId>6a1c461a-2def-4904-a535-37e632726468</CountryId> <Description>sample string 4</Description> <Elevation>1</Elevation> <ElevationUnitType>1</ElevationUnitType> <IcaoCode>sample string 5</IcaoCode> <IsInboundRouteRequired>true</IsInboundRouteRequired> <IsOutboundRouteRequired>true</IsOutboundRouteRequired> <Latitude>sample string 6</Latitude> <LocationId>e25f7ddb-10e2-4203-9257-19eea5b57c8c</LocationId> <LocationName>sample string 7</LocationName> <LocationShortName>sample string 8</LocationShortName> <LocationTypeId>a5f48398-3eb3-4d42-b213-f95767605b28</LocationTypeId> <Longitude>sample string 10</Longitude> <RunwayDirection>sample string 11</RunwayDirection> <RunwayLength>1</RunwayLength> <RunwayLengthUnitType>1</RunwayLengthUnitType> </LocationDetails>