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}/crew' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
{ "crews": [ { … } ], "externalReference": "string", "flightId": 0 }
curl -i -X POST \
'https://developer.fl3xx.com/_mock/reference/api/external/flight/{flightId}/crew' \
-H 'Content-Type: application/json' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '[
{
"crewPosition": {
"id": 0,
"role": "CMD",
"name": "string",
"code": "string",
"crewType": "FLIGHT_DECK",
"disableFtFdpCalculation": true,
"assignable": true,
"typeRatingRelated": true
},
"email": "string",
"externalReference": "string",
"firstName": "string",
"gender": "FEMALE",
"isPilotLanding": true,
"isPilotTakeoff": true,
"lastName": "string",
"logName": "string",
"luggageUnit": "KILOGRAM",
"luggageWeight": 0.1,
"middleName": "string",
"mobile": "string",
"personnelNumber": "string",
"phone": "string",
"pilotId": 0,
"role": "string",
"trigram": "string",
"weight": 0.1,
"weightUnit": "KILOGRAM"
}
]'
{ "crews": [ { … } ], "externalReference": "string", "flightId": 0 }