GET api/v1/starttypes/gliders
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of StartTypeListItem| Name | Description | Type | Additional information |
|---|---|---|---|
| StartTypeId | integer |
None. |
|
| StartTypeName | string |
None. |
|
| IsForGliderFlights | boolean |
None. |
|
| IsForTowFlights | boolean |
None. |
|
| IsForMotorFlights | boolean |
None. |
|
| IsWinchStart | boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"StartTypeId": 1,
"StartTypeName": "sample string 2",
"IsForGliderFlights": true,
"IsForTowFlights": true,
"IsForMotorFlights": true,
"IsWinchStart": true
},
{
"StartTypeId": 1,
"StartTypeName": "sample string 2",
"IsForGliderFlights": true,
"IsForTowFlights": true,
"IsForMotorFlights": true,
"IsWinchStart": true
}
]
text/html
Sample:
[{"StartTypeId":1,"StartTypeName":"sample string 2","IsForGliderFlights":true,"IsForTowFlights":true,"IsForMotorFlights":true,"IsWinchStart":true},{"StartTypeId":1,"StartTypeName":"sample string 2","IsForGliderFlights":true,"IsForTowFlights":true,"IsForMotorFlights":true,"IsWinchStart":true}]
application/xml, text/xml
Sample:
<ArrayOfStartTypeListItem xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.Flight">
<StartTypeListItem>
<IsForGliderFlights>true</IsForGliderFlights>
<IsForMotorFlights>true</IsForMotorFlights>
<IsForTowFlights>true</IsForTowFlights>
<IsWinchStart>true</IsWinchStart>
<StartTypeId>1</StartTypeId>
<StartTypeName>sample string 2</StartTypeName>
</StartTypeListItem>
<StartTypeListItem>
<IsForGliderFlights>true</IsForGliderFlights>
<IsForMotorFlights>true</IsForMotorFlights>
<IsForTowFlights>true</IsForTowFlights>
<IsWinchStart>true</IsWinchStart>
<StartTypeId>1</StartTypeId>
<StartTypeName>sample string 2</StartTypeName>
</StartTypeListItem>
</ArrayOfStartTypeListItem>