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": "273e3448-8e2f-4b63-9157-f69832092ed6",
"Day": "2026-06-01T02:21:37.599414+02:00",
"LocationId": "87510138-7e39-41fe-ae17-0ca99c2bea46",
"Remarks": "sample string 4",
"TowingPilotPersonId": "a5cdd53c-06c9-48e4-b8c0-8c6f8b767240",
"FlightOperatorPersonId": "42b26b17-4601-402f-89cc-4ab3fb90c2b9",
"InstructorPersonId": "26633b6e-192f-46c6-b244-558a41296544",
"Id": "273e3448-8e2f-4b63-9157-f69832092ed6",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"273e3448-8e2f-4b63-9157-f69832092ed6","Day":"2026-06-01T02:21:37.599414+02:00","LocationId":"87510138-7e39-41fe-ae17-0ca99c2bea46","Remarks":"sample string 4","TowingPilotPersonId":"a5cdd53c-06c9-48e4-b8c0-8c6f8b767240","FlightOperatorPersonId":"42b26b17-4601-402f-89cc-4ab3fb90c2b9","InstructorPersonId":"26633b6e-192f-46c6-b244-558a41296544","Id":"273e3448-8e2f-4b63-9157-f69832092ed6","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">273e3448-8e2f-4b63-9157-f69832092ed6</Id> <Day>2026-06-01T02:21:37.599414+02:00</Day> <FlightOperatorPersonId>42b26b17-4601-402f-89cc-4ab3fb90c2b9</FlightOperatorPersonId> <InstructorPersonId>26633b6e-192f-46c6-b244-558a41296544</InstructorPersonId> <LocationId>87510138-7e39-41fe-ae17-0ca99c2bea46</LocationId> <PlanningDayId>273e3448-8e2f-4b63-9157-f69832092ed6</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>a5cdd53c-06c9-48e4-b8c0-8c6f8b767240</TowingPilotPersonId> </PlanningDayDetails>