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/{id}/pax_details/cargo' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
[ { "cargoType": "ACT", "document": { … }, "documents": [ … ], "id": 0, "note": "string", "packages": 0, "weight": "string", "weightQty": 0.1, "weightUnit": "KILOGRAM" } ]
curl -i -X PUT \
'https://developer.fl3xx.com/_mock/reference/api/external/flight/{id}/pax_details/cargo' \
-H 'Content-Type: application/json' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '[
{
"cargoType": "ACT",
"documents": [
{
"creationDate": "2019-08-24T14:15:22Z",
"customName": "string",
"entityName": "string",
"fileSize": 0,
"id": 0,
"imageSizeX": 0,
"imageSizeY": 0,
"isThumbnail": true,
"name": "string",
"originalName": "string",
"refEntityId": 0,
"status": "string",
"thumbnail": {},
"uuid": "string"
}
],
"id": 0,
"note": "string",
"packages": 0,
"weight": "string",
"weightQty": 0.1,
"weightUnit": "KILOGRAM"
}
]'
[ { "cargoType": "ACT", "document": { … }, "documents": [ … ], "id": 0, "note": "string", "packages": 0, "weight": "string", "weightQty": 0.1, "weightUnit": "KILOGRAM" } ]
curl -i -X DELETE \
'https://developer.fl3xx.com/_mock/reference/api/external/flight/{id}/pax_details/cargo' \
-H 'Content-Type: */*' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d 0