FL3XX API allows partners to access flight information, airport details, and a vast array of aviation services.
FL3XX API allows partners to access flight information, airport details, and a vast array of aviation services.
curl -i -X GET \
'https://developer.fl3xx.com/_mock/reference/api/external/flight/{flightId}/planningnote' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
{ "modificationDate": "2019-08-24T14:15:22Z", "note": "string" }
curl -i -X PUT \
'https://developer.fl3xx.com/_mock/reference/api/external/flight/{flightId}/planningnote' \
-H 'Content-Type: application/json' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '{
"modificationDate": "2019-08-24T14:15:22Z",
"note": "string"
}'
{ "modificationDate": "2019-08-24T14:15:22Z", "note": "string" }
curl -i -X DELETE \
'https://developer.fl3xx.com/_mock/reference/api/external/flight/{flightId}/planningnote' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'