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}/migration' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
{ "arrivalMigration": { "by": "HANDLER", "documents": [ … ], "id": 0, "notes": "string", "permitProviderId": 0, "status": "NA" }, "departureMigration": { "by": "HANDLER", "documents": [ … ], "id": 0, "notes": "string", "permitProviderId": 0, "status": "NA" } }
curl -i -X PUT \
'https://developer.fl3xx.com/_mock/reference/api/external/flight/{flightId}/migration' \
-H 'Content-Type: application/json' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '{
"departureMigration": {
"id": 0,
"status": "NA",
"by": "HANDLER",
"permitProviderId": 0,
"notes": "string",
"documents": [
{
"customName": "string",
"fileSize": 0,
"id": 0,
"imageSizeX": 0,
"imageSizeY": 0,
"isThumbnail": true,
"name": "string",
"originalName": "string",
"uuid": "string"
}
]
},
"arrivalMigration": {
"id": 0,
"status": "NA",
"by": "HANDLER",
"permitProviderId": 0,
"notes": "string",
"documents": [
{
"customName": "string",
"fileSize": 0,
"id": 0,
"imageSizeX": 0,
"imageSizeY": 0,
"isThumbnail": true,
"name": "string",
"originalName": "string",
"uuid": "string"
}
]
}
}'
{ "arrivalMigration": { "by": "HANDLER", "documents": [ … ], "id": 0, "notes": "string", "permitProviderId": 0, "status": "NA" }, "departureMigration": { "by": "HANDLER", "documents": [ … ], "id": 0, "notes": "string", "permitProviderId": 0, "status": "NA" } }