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": "1fc133a9-0361-4071-accc-3a7ae219df58",
"Day": "2026-04-08T10:38:36.4238662+02:00",
"LocationId": "7a5073dd-8f42-49d6-9857-80cc73d31a85",
"Remarks": "sample string 4",
"TowingPilotPersonId": "1968dce2-b54c-4674-a411-6b34378d221f",
"FlightOperatorPersonId": "63d4a503-8919-460b-817e-5ab099d00312",
"InstructorPersonId": "c31e3c83-8b8c-4ab6-9458-6b7dac2e3dc8",
"Id": "1fc133a9-0361-4071-accc-3a7ae219df58",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"1fc133a9-0361-4071-accc-3a7ae219df58","Day":"2026-04-08T10:38:36.4238662+02:00","LocationId":"7a5073dd-8f42-49d6-9857-80cc73d31a85","Remarks":"sample string 4","TowingPilotPersonId":"1968dce2-b54c-4674-a411-6b34378d221f","FlightOperatorPersonId":"63d4a503-8919-460b-817e-5ab099d00312","InstructorPersonId":"c31e3c83-8b8c-4ab6-9458-6b7dac2e3dc8","Id":"1fc133a9-0361-4071-accc-3a7ae219df58","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">1fc133a9-0361-4071-accc-3a7ae219df58</Id> <Day>2026-04-08T10:38:36.4238662+02:00</Day> <FlightOperatorPersonId>63d4a503-8919-460b-817e-5ab099d00312</FlightOperatorPersonId> <InstructorPersonId>c31e3c83-8b8c-4ab6-9458-6b7dac2e3dc8</InstructorPersonId> <LocationId>7a5073dd-8f42-49d6-9857-80cc73d31a85</LocationId> <PlanningDayId>1fc133a9-0361-4071-accc-3a7ae219df58</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>1968dce2-b54c-4674-a411-6b34378d221f</TowingPilotPersonId> </PlanningDayDetails>