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": "8503f27d-ebcd-4850-9851-eccd982e0ec4",
"Day": "2026-05-08T00:37:52.6070123+02:00",
"LocationId": "925fc060-13b5-4597-8759-0f2592e17244",
"Remarks": "sample string 4",
"TowingPilotPersonId": "338ffa35-e305-42ce-84c0-a352c4e1961c",
"FlightOperatorPersonId": "95f8c806-4645-41fb-a4bd-c65684370101",
"InstructorPersonId": "0baaa2d4-800a-44cf-b65e-f66708d324d9",
"Id": "8503f27d-ebcd-4850-9851-eccd982e0ec4",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"8503f27d-ebcd-4850-9851-eccd982e0ec4","Day":"2026-05-08T00:37:52.6070123+02:00","LocationId":"925fc060-13b5-4597-8759-0f2592e17244","Remarks":"sample string 4","TowingPilotPersonId":"338ffa35-e305-42ce-84c0-a352c4e1961c","FlightOperatorPersonId":"95f8c806-4645-41fb-a4bd-c65684370101","InstructorPersonId":"0baaa2d4-800a-44cf-b65e-f66708d324d9","Id":"8503f27d-ebcd-4850-9851-eccd982e0ec4","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">8503f27d-ebcd-4850-9851-eccd982e0ec4</Id> <Day>2026-05-08T00:37:52.6070123+02:00</Day> <FlightOperatorPersonId>95f8c806-4645-41fb-a4bd-c65684370101</FlightOperatorPersonId> <InstructorPersonId>0baaa2d4-800a-44cf-b65e-f66708d324d9</InstructorPersonId> <LocationId>925fc060-13b5-4597-8759-0f2592e17244</LocationId> <PlanningDayId>8503f27d-ebcd-4850-9851-eccd982e0ec4</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>338ffa35-e305-42ce-84c0-a352c4e1961c</TowingPilotPersonId> </PlanningDayDetails>