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": "5ced7568-5750-4727-b85b-26cc54a67e7d",
"Day": "2026-07-01T19:26:41.2010514+02:00",
"LocationId": "93feecc2-697f-4a66-8471-8325df8a7a8c",
"Remarks": "sample string 4",
"TowingPilotPersonId": "d84e45b8-d123-4f59-a901-83e395f4a149",
"FlightOperatorPersonId": "239e4cd8-18ba-4123-b441-8e0a51b71b64",
"InstructorPersonId": "083aeab2-2e33-4d97-bc6d-ad90ee9d506a",
"Id": "5ced7568-5750-4727-b85b-26cc54a67e7d",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"5ced7568-5750-4727-b85b-26cc54a67e7d","Day":"2026-07-01T19:26:41.2010514+02:00","LocationId":"93feecc2-697f-4a66-8471-8325df8a7a8c","Remarks":"sample string 4","TowingPilotPersonId":"d84e45b8-d123-4f59-a901-83e395f4a149","FlightOperatorPersonId":"239e4cd8-18ba-4123-b441-8e0a51b71b64","InstructorPersonId":"083aeab2-2e33-4d97-bc6d-ad90ee9d506a","Id":"5ced7568-5750-4727-b85b-26cc54a67e7d","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">5ced7568-5750-4727-b85b-26cc54a67e7d</Id> <Day>2026-07-01T19:26:41.2010514+02:00</Day> <FlightOperatorPersonId>239e4cd8-18ba-4123-b441-8e0a51b71b64</FlightOperatorPersonId> <InstructorPersonId>083aeab2-2e33-4d97-bc6d-ad90ee9d506a</InstructorPersonId> <LocationId>93feecc2-697f-4a66-8471-8325df8a7a8c</LocationId> <PlanningDayId>5ced7568-5750-4727-b85b-26cc54a67e7d</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>d84e45b8-d123-4f59-a901-83e395f4a149</TowingPilotPersonId> </PlanningDayDetails>