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": "21392047-8979-4ff4-85b6-f9fc15a2d69f",
"Start": "2026-05-31T02:02:02.2761947+02:00",
"End": "2026-05-31T02:02:02.2761947+02:00",
"IsAllDayReservation": true,
"AircraftId": "89442aba-fb57-42a3-ba9d-2d98bb6739e3",
"PilotPersonId": "47ca75b7-bd17-4e33-836b-aeca99fc6107",
"LocationId": "01fd5c67-aa2d-4470-9f8b-7bb9bb28614a",
"SecondCrewPersonId": "5e0360aa-0b93-4024-b915-c867438962e3",
"ReservationTypeId": "46133208-f79e-4b1a-83a7-cf93046a4699",
"Remarks": "sample string 9",
"Id": "21392047-8979-4ff4-85b6-f9fc15a2d69f",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"AircraftReservationId":"21392047-8979-4ff4-85b6-f9fc15a2d69f","Start":"2026-05-31T02:02:02.2761947+02:00","End":"2026-05-31T02:02:02.2761947+02:00","IsAllDayReservation":true,"AircraftId":"89442aba-fb57-42a3-ba9d-2d98bb6739e3","PilotPersonId":"47ca75b7-bd17-4e33-836b-aeca99fc6107","LocationId":"01fd5c67-aa2d-4470-9f8b-7bb9bb28614a","SecondCrewPersonId":"5e0360aa-0b93-4024-b915-c867438962e3","ReservationTypeId":"46133208-f79e-4b1a-83a7-cf93046a4699","Remarks":"sample string 9","Id":"21392047-8979-4ff4-85b6-f9fc15a2d69f","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">21392047-8979-4ff4-85b6-f9fc15a2d69f</Id> <AircraftId>89442aba-fb57-42a3-ba9d-2d98bb6739e3</AircraftId> <AircraftReservationId>21392047-8979-4ff4-85b6-f9fc15a2d69f</AircraftReservationId> <End>2026-05-31T02:02:02.2761947+02:00</End> <IsAllDayReservation>true</IsAllDayReservation> <LocationId>01fd5c67-aa2d-4470-9f8b-7bb9bb28614a</LocationId> <PilotPersonId>47ca75b7-bd17-4e33-836b-aeca99fc6107</PilotPersonId> <Remarks>sample string 9</Remarks> <ReservationTypeId>46133208-f79e-4b1a-83a7-cf93046a4699</ReservationTypeId> <SecondCrewPersonId>5e0360aa-0b93-4024-b915-c867438962e3</SecondCrewPersonId> <Start>2026-05-31T02:02:02.2761947+02:00</Start> </AircraftReservationDetails>