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": "b006a779-6aae-41ad-8bfa-1ef3a8414137",
"Day": "2026-01-19T10:49:02.2417144+01:00",
"LocationId": "71d879b5-a605-440d-8d77-a92e25bc444e",
"Remarks": "sample string 4",
"TowingPilotPersonId": "aa7e28b0-2017-4571-ae39-8fa212b2754f",
"FlightOperatorPersonId": "4a5547a2-6d58-4a6a-89c6-ddcb991b7cb0",
"InstructorPersonId": "ebd4c6cc-61ee-45f3-a4bf-abd64dfbe8d5",
"Id": "b006a779-6aae-41ad-8bfa-1ef3a8414137",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"b006a779-6aae-41ad-8bfa-1ef3a8414137","Day":"2026-01-19T10:49:02.2417144+01:00","LocationId":"71d879b5-a605-440d-8d77-a92e25bc444e","Remarks":"sample string 4","TowingPilotPersonId":"aa7e28b0-2017-4571-ae39-8fa212b2754f","FlightOperatorPersonId":"4a5547a2-6d58-4a6a-89c6-ddcb991b7cb0","InstructorPersonId":"ebd4c6cc-61ee-45f3-a4bf-abd64dfbe8d5","Id":"b006a779-6aae-41ad-8bfa-1ef3a8414137","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">b006a779-6aae-41ad-8bfa-1ef3a8414137</Id> <Day>2026-01-19T10:49:02.2417144+01:00</Day> <FlightOperatorPersonId>4a5547a2-6d58-4a6a-89c6-ddcb991b7cb0</FlightOperatorPersonId> <InstructorPersonId>ebd4c6cc-61ee-45f3-a4bf-abd64dfbe8d5</InstructorPersonId> <LocationId>71d879b5-a605-440d-8d77-a92e25bc444e</LocationId> <PlanningDayId>b006a779-6aae-41ad-8bfa-1ef3a8414137</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>aa7e28b0-2017-4571-ae39-8fa212b2754f</TowingPilotPersonId> </PlanningDayDetails>