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": "97706a48-a164-4c5b-be78-aa28eb140ba4",
"Day": "2026-07-02T23:13:30.1541801+02:00",
"LocationId": "09dfc314-1ab5-4b20-ad29-85bf39acf633",
"Remarks": "sample string 4",
"TowingPilotPersonId": "406e2d86-f8bd-48f9-b578-06568104f750",
"FlightOperatorPersonId": "01441ae0-2ff9-494c-b6d3-9a32e9960a2e",
"InstructorPersonId": "a27f8260-0458-4580-ba4d-fc80869971b7",
"Id": "97706a48-a164-4c5b-be78-aa28eb140ba4",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"97706a48-a164-4c5b-be78-aa28eb140ba4","Day":"2026-07-02T23:13:30.1541801+02:00","LocationId":"09dfc314-1ab5-4b20-ad29-85bf39acf633","Remarks":"sample string 4","TowingPilotPersonId":"406e2d86-f8bd-48f9-b578-06568104f750","FlightOperatorPersonId":"01441ae0-2ff9-494c-b6d3-9a32e9960a2e","InstructorPersonId":"a27f8260-0458-4580-ba4d-fc80869971b7","Id":"97706a48-a164-4c5b-be78-aa28eb140ba4","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">97706a48-a164-4c5b-be78-aa28eb140ba4</Id> <Day>2026-07-02T23:13:30.1541801+02:00</Day> <FlightOperatorPersonId>01441ae0-2ff9-494c-b6d3-9a32e9960a2e</FlightOperatorPersonId> <InstructorPersonId>a27f8260-0458-4580-ba4d-fc80869971b7</InstructorPersonId> <LocationId>09dfc314-1ab5-4b20-ad29-85bf39acf633</LocationId> <PlanningDayId>97706a48-a164-4c5b-be78-aa28eb140ba4</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>406e2d86-f8bd-48f9-b578-06568104f750</TowingPilotPersonId> </PlanningDayDetails>