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}/sanction-list' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
{ "crew": [ { … } ], "passengers": [ { … } ] }
curl -i -X PUT \
'https://developer.fl3xx.com/_mock/reference/api/external/flight/{flightId}/sanction-list' \
-H 'Content-Type: application/json' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '{
"crew": [
{
"id": 0,
"status": "GRAY",
"note": "string",
"source": "WEB"
}
],
"passengers": [
{
"id": 0,
"status": "GRAY",
"note": "string",
"source": "WEB"
}
]
}'
{ "crew": [ { … } ], "passengers": [ { … } ] }