GET api/v1/planningdays/{planningDayId}
Gets the planning day details.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| planningDayId |
The planning day identifier. |
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": "b1498db4-c0b4-45ba-a998-d4369dd7d505",
"Day": "2025-10-24T05:20:38.2205439+02:00",
"LocationId": "3f17fce8-7b84-4b00-adf0-3abd3687cc77",
"Remarks": "sample string 4",
"TowingPilotPersonId": "da511550-858c-41b5-b5e3-cd8204411082",
"FlightOperatorPersonId": "7d25cbec-174c-4b10-a07b-ef6f82b30b3b",
"InstructorPersonId": "eaa6476d-3fc6-4a91-af8f-6a5d45449c3c",
"Id": "b1498db4-c0b4-45ba-a998-d4369dd7d505",
"CanUpdateRecord": true,
"CanDeleteRecord": true
}
text/html
Sample:
{"PlanningDayId":"b1498db4-c0b4-45ba-a998-d4369dd7d505","Day":"2025-10-24T05:20:38.2205439+02:00","LocationId":"3f17fce8-7b84-4b00-adf0-3abd3687cc77","Remarks":"sample string 4","TowingPilotPersonId":"da511550-858c-41b5-b5e3-cd8204411082","FlightOperatorPersonId":"7d25cbec-174c-4b10-a07b-ef6f82b30b3b","InstructorPersonId":"eaa6476d-3fc6-4a91-af8f-6a5d45449c3c","Id":"b1498db4-c0b4-45ba-a998-d4369dd7d505","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">b1498db4-c0b4-45ba-a998-d4369dd7d505</Id> <Day>2025-10-24T05:20:38.2205439+02:00</Day> <FlightOperatorPersonId>7d25cbec-174c-4b10-a07b-ef6f82b30b3b</FlightOperatorPersonId> <InstructorPersonId>eaa6476d-3fc6-4a91-af8f-6a5d45449c3c</InstructorPersonId> <LocationId>3f17fce8-7b84-4b00-adf0-3abd3687cc77</LocationId> <PlanningDayId>b1498db4-c0b4-45ba-a998-d4369dd7d505</PlanningDayId> <Remarks>sample string 4</Remarks> <TowingPilotPersonId>da511550-858c-41b5-b5e3-cd8204411082</TowingPilotPersonId> </PlanningDayDetails>