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": "b7a197ae-1bd3-44d2-94c8-c389f56ea359",
"Day": "2026-08-28T06:40:01.3965673+02:00",
"LocationId": "3b6586d0-18b8-48cd-80ff-e6b9c1ea3b94",
"Remarks": "sample string 4",
"TowingPilotPersonId": "13e2dc67-7b25-42ac-9ec8-19be6eb93325",
"FlightOperatorPersonId": "36f91678-5e64-4faf-9ae0-1ae232073eba",
"InstructorPersonId": "da0b1654-527e-4041-b4c2-480d5581a7d0",
"Id": "b7a197ae-1bd3-44d2-94c8-c389f56ea359",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"b7a197ae-1bd3-44d2-94c8-c389f56ea359","Day":"2026-08-28T06:40:01.3965673+02:00","LocationId":"3b6586d0-18b8-48cd-80ff-e6b9c1ea3b94","Remarks":"sample string 4","TowingPilotPersonId":"13e2dc67-7b25-42ac-9ec8-19be6eb93325","FlightOperatorPersonId":"36f91678-5e64-4faf-9ae0-1ae232073eba","InstructorPersonId":"da0b1654-527e-4041-b4c2-480d5581a7d0","Id":"b7a197ae-1bd3-44d2-94c8-c389f56ea359","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">b7a197ae-1bd3-44d2-94c8-c389f56ea359</Id> <Day>2026-08-28T06:40:01.3965673+02:00</Day> <FlightOperatorPersonId>36f91678-5e64-4faf-9ae0-1ae232073eba</FlightOperatorPersonId> <InstructorPersonId>da0b1654-527e-4041-b4c2-480d5581a7d0</InstructorPersonId> <LocationId>3b6586d0-18b8-48cd-80ff-e6b9c1ea3b94</LocationId> <PlanningDayId>b7a197ae-1bd3-44d2-94c8-c389f56ea359</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>13e2dc67-7b25-42ac-9ec8-19be6eb93325</TowingPilotPersonId> </PlanningDayDetails>