GET api/v1/planningdays/{planningDayId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| planningDayId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PlanningDayDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| PlanningDayId | globally unique identifier |
None. |
|
| Day | date |
Required |
|
| LocationId | globally unique identifier |
Required |
|
| Remarks | string |
None. |
|
| TowingPilotPersonId | globally unique identifier |
None. |
|
| FlightOperatorPersonId | globally unique identifier |
None. |
|
| InstructorPersonId | globally unique identifier |
None. |
|
| Id | globally unique identifier |
None. |
|
| CanUpdateRecord | boolean |
None. |
|
| CanDeleteRecord | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"PlanningDayId": "4091a438-f306-412e-a31f-287f12b3f4a7",
"Day": "2026-05-18T03:29:07.8706104+02:00",
"LocationId": "77e0b536-0963-440e-a779-f4333fee3c19",
"Remarks": "sample string 4",
"TowingPilotPersonId": "39487699-51db-4339-a504-b6fb357f08d9",
"FlightOperatorPersonId": "eae7ddc5-688e-4018-a2c9-2f767cbb6965",
"InstructorPersonId": "b006482b-4538-46a1-8227-b5cdaffb18ed",
"Id": "4091a438-f306-412e-a31f-287f12b3f4a7",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"4091a438-f306-412e-a31f-287f12b3f4a7","Day":"2026-05-18T03:29:07.8706104+02:00","LocationId":"77e0b536-0963-440e-a779-f4333fee3c19","Remarks":"sample string 4","TowingPilotPersonId":"39487699-51db-4339-a504-b6fb357f08d9","FlightOperatorPersonId":"eae7ddc5-688e-4018-a2c9-2f767cbb6965","InstructorPersonId":"b006482b-4538-46a1-8227-b5cdaffb18ed","Id":"4091a438-f306-412e-a31f-287f12b3f4a7","CanUpdateRecord":true,"CanDeleteRecord":true}
application/xml, text/xml
Sample:
<PlanningDayDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FLS.Data.WebApi.PlanningDay"> <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">4091a438-f306-412e-a31f-287f12b3f4a7</Id> <Day>2026-05-18T03:29:07.8706104+02:00</Day> <FlightOperatorPersonId>eae7ddc5-688e-4018-a2c9-2f767cbb6965</FlightOperatorPersonId> <InstructorPersonId>b006482b-4538-46a1-8227-b5cdaffb18ed</InstructorPersonId> <LocationId>77e0b536-0963-440e-a779-f4333fee3c19</LocationId> <PlanningDayId>4091a438-f306-412e-a31f-287f12b3f4a7</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>39487699-51db-4339-a504-b6fb357f08d9</TowingPilotPersonId> </PlanningDayDetails>