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": "9c0834b4-6761-49fc-a45f-0ec7e3539a40",
"Day": "2026-07-25T18:26:13.049723+02:00",
"LocationId": "8cc41303-00f5-439a-9380-0225d261f42c",
"Remarks": "sample string 4",
"TowingPilotPersonId": "ed4f1e00-bc0d-4200-8661-c7442ec69c49",
"FlightOperatorPersonId": "fc7e54e6-f066-43b7-b04b-dee0b93193aa",
"InstructorPersonId": "9b1bd340-a7b3-493e-b129-be138e21d01d",
"Id": "9c0834b4-6761-49fc-a45f-0ec7e3539a40",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"9c0834b4-6761-49fc-a45f-0ec7e3539a40","Day":"2026-07-25T18:26:13.049723+02:00","LocationId":"8cc41303-00f5-439a-9380-0225d261f42c","Remarks":"sample string 4","TowingPilotPersonId":"ed4f1e00-bc0d-4200-8661-c7442ec69c49","FlightOperatorPersonId":"fc7e54e6-f066-43b7-b04b-dee0b93193aa","InstructorPersonId":"9b1bd340-a7b3-493e-b129-be138e21d01d","Id":"9c0834b4-6761-49fc-a45f-0ec7e3539a40","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">9c0834b4-6761-49fc-a45f-0ec7e3539a40</Id> <Day>2026-07-25T18:26:13.049723+02:00</Day> <FlightOperatorPersonId>fc7e54e6-f066-43b7-b04b-dee0b93193aa</FlightOperatorPersonId> <InstructorPersonId>9b1bd340-a7b3-493e-b129-be138e21d01d</InstructorPersonId> <LocationId>8cc41303-00f5-439a-9380-0225d261f42c</LocationId> <PlanningDayId>9c0834b4-6761-49fc-a45f-0ec7e3539a40</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>ed4f1e00-bc0d-4200-8661-c7442ec69c49</TowingPilotPersonId> </PlanningDayDetails>