GET api/FlightApi/AirlinesLookup?airlinecode={airlinecode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| airlinecode | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
Collection of AirlineInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
None. |
|
| Code | string |
None. |
|
| Name | string |
None. |
|
| NameAr | string |
None. |
|
| BusinessName | string |
None. |
|
| Logo | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": "sample string 1",
"Code": "sample string 2",
"Name": "sample string 3",
"NameAr": "sample string 4",
"BusinessName": "sample string 5",
"Logo": "sample string 6"
},
{
"ID": "sample string 1",
"Code": "sample string 2",
"Name": "sample string 3",
"NameAr": "sample string 4",
"BusinessName": "sample string 5",
"Logo": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfAirlineInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Flynet.Common.DataContracts">
<AirlineInfo>
<BusinessName>sample string 5</BusinessName>
<Code>sample string 2</Code>
<ID>sample string 1</ID>
<Logo>sample string 6</Logo>
<Name>sample string 3</Name>
<NameAr>sample string 4</NameAr>
</AirlineInfo>
<AirlineInfo>
<BusinessName>sample string 5</BusinessName>
<Code>sample string 2</Code>
<ID>sample string 1</ID>
<Logo>sample string 6</Logo>
<Name>sample string 3</Name>
<NameAr>sample string 4</NameAr>
</AirlineInfo>
</ArrayOfAirlineInfo>