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": "9edc81ca-fb39-4d34-b7fc-3d96177fed1c",
"Day": "2026-03-22T11:10:16.1622542+01:00",
"LocationId": "b645ffba-2ee1-445a-837f-6c2854de23c8",
"Remarks": "sample string 4",
"TowingPilotPersonId": "bbe0df65-6e15-4aa6-bb1d-3c58c2ef3c52",
"FlightOperatorPersonId": "d0e0ff8f-e30b-4f44-880e-e8cb90d0993a",
"InstructorPersonId": "b59f7eb0-c63c-41fc-aef4-07b1ce9be944",
"Id": "9edc81ca-fb39-4d34-b7fc-3d96177fed1c",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"9edc81ca-fb39-4d34-b7fc-3d96177fed1c","Day":"2026-03-22T11:10:16.1622542+01:00","LocationId":"b645ffba-2ee1-445a-837f-6c2854de23c8","Remarks":"sample string 4","TowingPilotPersonId":"bbe0df65-6e15-4aa6-bb1d-3c58c2ef3c52","FlightOperatorPersonId":"d0e0ff8f-e30b-4f44-880e-e8cb90d0993a","InstructorPersonId":"b59f7eb0-c63c-41fc-aef4-07b1ce9be944","Id":"9edc81ca-fb39-4d34-b7fc-3d96177fed1c","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">9edc81ca-fb39-4d34-b7fc-3d96177fed1c</Id> <Day>2026-03-22T11:10:16.1622542+01:00</Day> <FlightOperatorPersonId>d0e0ff8f-e30b-4f44-880e-e8cb90d0993a</FlightOperatorPersonId> <InstructorPersonId>b59f7eb0-c63c-41fc-aef4-07b1ce9be944</InstructorPersonId> <LocationId>b645ffba-2ee1-445a-837f-6c2854de23c8</LocationId> <PlanningDayId>9edc81ca-fb39-4d34-b7fc-3d96177fed1c</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>bbe0df65-6e15-4aa6-bb1d-3c58c2ef3c52</TowingPilotPersonId> </PlanningDayDetails>