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": "c08ca537-2337-434c-861e-d1ca33401e88",
"Day": "2026-05-02T07:28:07.4742375+02:00",
"LocationId": "09f3883a-2381-49c6-9b9c-b70a20cee414",
"Remarks": "sample string 4",
"TowingPilotPersonId": "fecf8572-8be9-4b77-a1ad-81083b41bf56",
"FlightOperatorPersonId": "09eb1226-0a0e-4621-a045-e0563057879a",
"InstructorPersonId": "e556d3df-4a60-487b-b03c-5771457a2b95",
"Id": "c08ca537-2337-434c-861e-d1ca33401e88",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"c08ca537-2337-434c-861e-d1ca33401e88","Day":"2026-05-02T07:28:07.4742375+02:00","LocationId":"09f3883a-2381-49c6-9b9c-b70a20cee414","Remarks":"sample string 4","TowingPilotPersonId":"fecf8572-8be9-4b77-a1ad-81083b41bf56","FlightOperatorPersonId":"09eb1226-0a0e-4621-a045-e0563057879a","InstructorPersonId":"e556d3df-4a60-487b-b03c-5771457a2b95","Id":"c08ca537-2337-434c-861e-d1ca33401e88","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">c08ca537-2337-434c-861e-d1ca33401e88</Id> <Day>2026-05-02T07:28:07.4742375+02:00</Day> <FlightOperatorPersonId>09eb1226-0a0e-4621-a045-e0563057879a</FlightOperatorPersonId> <InstructorPersonId>e556d3df-4a60-487b-b03c-5771457a2b95</InstructorPersonId> <LocationId>09f3883a-2381-49c6-9b9c-b70a20cee414</LocationId> <PlanningDayId>c08ca537-2337-434c-861e-d1ca33401e88</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>fecf8572-8be9-4b77-a1ad-81083b41bf56</TowingPilotPersonId> </PlanningDayDetails>