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": "36d194f9-a481-4e57-82f6-3198f4288174",
"Day": "2026-04-11T23:07:00.2988655+02:00",
"LocationId": "6e6b4157-9a86-4d2e-85d5-ee85cf003fb2",
"Remarks": "sample string 4",
"TowingPilotPersonId": "81a4c9a6-272a-48ba-ae05-a26491f1c871",
"FlightOperatorPersonId": "81c68ecd-76eb-4787-8921-ae01ccf14696",
"InstructorPersonId": "e707657b-67d1-4b8e-8c6a-51c66c03f194",
"Id": "36d194f9-a481-4e57-82f6-3198f4288174",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"36d194f9-a481-4e57-82f6-3198f4288174","Day":"2026-04-11T23:07:00.2988655+02:00","LocationId":"6e6b4157-9a86-4d2e-85d5-ee85cf003fb2","Remarks":"sample string 4","TowingPilotPersonId":"81a4c9a6-272a-48ba-ae05-a26491f1c871","FlightOperatorPersonId":"81c68ecd-76eb-4787-8921-ae01ccf14696","InstructorPersonId":"e707657b-67d1-4b8e-8c6a-51c66c03f194","Id":"36d194f9-a481-4e57-82f6-3198f4288174","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">36d194f9-a481-4e57-82f6-3198f4288174</Id> <Day>2026-04-11T23:07:00.2988655+02:00</Day> <FlightOperatorPersonId>81c68ecd-76eb-4787-8921-ae01ccf14696</FlightOperatorPersonId> <InstructorPersonId>e707657b-67d1-4b8e-8c6a-51c66c03f194</InstructorPersonId> <LocationId>6e6b4157-9a86-4d2e-85d5-ee85cf003fb2</LocationId> <PlanningDayId>36d194f9-a481-4e57-82f6-3198f4288174</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>81a4c9a6-272a-48ba-ae05-a26491f1c871</TowingPilotPersonId> </PlanningDayDetails>