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": "b1c3d1f1-822b-4007-a72a-d32715e74678",
"Day": "2026-08-13T12:33:18.6828157+02:00",
"LocationId": "19e9b365-b45e-49f1-b4f9-a2f3d86e5973",
"Remarks": "sample string 4",
"TowingPilotPersonId": "0644eefb-b3be-4faa-999e-c9082cbe3288",
"FlightOperatorPersonId": "f9a5ba0a-13cd-4fe4-b28d-e5e0f5058fd5",
"InstructorPersonId": "a4136c68-22e2-4195-8ea1-9b0a6a6d352b",
"Id": "b1c3d1f1-822b-4007-a72a-d32715e74678",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"b1c3d1f1-822b-4007-a72a-d32715e74678","Day":"2026-08-13T12:33:18.6828157+02:00","LocationId":"19e9b365-b45e-49f1-b4f9-a2f3d86e5973","Remarks":"sample string 4","TowingPilotPersonId":"0644eefb-b3be-4faa-999e-c9082cbe3288","FlightOperatorPersonId":"f9a5ba0a-13cd-4fe4-b28d-e5e0f5058fd5","InstructorPersonId":"a4136c68-22e2-4195-8ea1-9b0a6a6d352b","Id":"b1c3d1f1-822b-4007-a72a-d32715e74678","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">b1c3d1f1-822b-4007-a72a-d32715e74678</Id> <Day>2026-08-13T12:33:18.6828157+02:00</Day> <FlightOperatorPersonId>f9a5ba0a-13cd-4fe4-b28d-e5e0f5058fd5</FlightOperatorPersonId> <InstructorPersonId>a4136c68-22e2-4195-8ea1-9b0a6a6d352b</InstructorPersonId> <LocationId>19e9b365-b45e-49f1-b4f9-a2f3d86e5973</LocationId> <PlanningDayId>b1c3d1f1-822b-4007-a72a-d32715e74678</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>0644eefb-b3be-4faa-999e-c9082cbe3288</TowingPilotPersonId> </PlanningDayDetails>