GET api/v1/aircraftreservations/{aircraftReservationId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| aircraftReservationId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
AircraftReservationDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| AircraftReservationId | globally unique identifier |
None. |
|
| Start | date |
Required |
|
| End | date |
Required |
|
| IsAllDayReservation | boolean |
Required |
|
| AircraftId | globally unique identifier |
Required |
|
| PilotPersonId | globally unique identifier |
Required |
|
| LocationId | globally unique identifier |
Required |
|
| SecondCrewPersonId | globally unique identifier |
None. |
|
| ReservationTypeId | globally unique identifier |
Required |
|
| Remarks | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| CanUpdateRecord | boolean |
None. |
|
| CanDeleteRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"AircraftReservationId": "d350fad0-8481-4dd7-9295-c6d289e13d67",
"Start": "2026-04-06T22:05:01.0488624+02:00",
"End": "2026-04-06T22:05:01.0488624+02:00",
"IsAllDayReservation": true,
"AircraftId": "121d3d7a-6742-4e07-83d1-4824f1d4fe42",
"PilotPersonId": "02ee9016-a8be-4396-88d6-c2b183d84211",
"LocationId": "59e2bda5-32af-4c62-9cc8-84b1403dfda7",
"SecondCrewPersonId": "8b5f3a97-6887-414b-85b0-535d38a18d73",
"ReservationTypeId": "9f7cada1-cb83-4e70-af24-d5156fd97ef4",
"Remarks": "sample string 9",
"Id": "d350fad0-8481-4dd7-9295-c6d289e13d67",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"AircraftReservationId":"d350fad0-8481-4dd7-9295-c6d289e13d67","Start":"2026-04-06T22:05:01.0488624+02:00","End":"2026-04-06T22:05:01.0488624+02:00","IsAllDayReservation":true,"AircraftId":"121d3d7a-6742-4e07-83d1-4824f1d4fe42","PilotPersonId":"02ee9016-a8be-4396-88d6-c2b183d84211","LocationId":"59e2bda5-32af-4c62-9cc8-84b1403dfda7","SecondCrewPersonId":"8b5f3a97-6887-414b-85b0-535d38a18d73","ReservationTypeId":"9f7cada1-cb83-4e70-af24-d5156fd97ef4","Remarks":"sample string 9","Id":"d350fad0-8481-4dd7-9295-c6d289e13d67","CanUpdateRecord":true,"CanDeleteRecord":true}
application/xml, text/xml
Sample:
<AircraftReservationDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.AircraftReservation"> <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">d350fad0-8481-4dd7-9295-c6d289e13d67</Id> <AircraftId>121d3d7a-6742-4e07-83d1-4824f1d4fe42</AircraftId> <AircraftReservationId>d350fad0-8481-4dd7-9295-c6d289e13d67</AircraftReservationId> <End>2026-04-06T22:05:01.0488624+02:00</End> <IsAllDayReservation>true</IsAllDayReservation> <LocationId>59e2bda5-32af-4c62-9cc8-84b1403dfda7</LocationId> <PilotPersonId>02ee9016-a8be-4396-88d6-c2b183d84211</PilotPersonId> <Remarks>sample string 9</Remarks> <ReservationTypeId>9f7cada1-cb83-4e70-af24-d5156fd97ef4</ReservationTypeId> <SecondCrewPersonId>8b5f3a97-6887-414b-85b0-535d38a18d73</SecondCrewPersonId> <Start>2026-04-06T22:05:01.0488624+02:00</Start> </AircraftReservationDetails>