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/user/account?limit=100&offset=0' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
[ { "accountNumber": 1111, "accountid": 1111, "email": "email@fl3xx.com", "externalReference": "669665849-f120-4f65-6325-11111", "internalId": 632123, "mobile": 111111111, "name": "Account", "notes": "Notes", "phone": 111111111, "vatNumber": "A11111111111", "address": { … }, "links": { … } } ]
curl -i -X POST \
https://developer.fl3xx.com/_mock/reference/api/external/user/account \
-H 'Content-Type: application/json' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '{
"accountNumber": 1111,
"email": "email@fl3xx.com",
"externalReference": "669665849-f120-4f65-6325-11111",
"mobile": 111111111,
"name": "Account",
"notes": "Notes",
"phone": 111111111,
"vatNumber": "A11111111111",
"address": {
"buildingDetails": "14th",
"city": "Lisbon",
"country": "Portugal",
"externalReference": "External ref",
"latitude": 0.1,
"links": {
"empty": true
},
"longitude": 0.1,
"recipient": "Recipient",
"street": "My Street",
"type": "WORK",
"zip": 111111
},
"links": {
"empty": true
}
}'
{ "accountNumber": 1111, "accountid": 1111, "email": "email@fl3xx.com", "externalReference": "669665849-f120-4f65-6325-11111", "internalId": 632123, "mobile": 111111111, "name": "Account", "notes": "Notes", "phone": 111111111, "vatNumber": "A11111111111", "address": { "buildingDetails": "14th", "city": "Lisbon", "country": "Portugal", "externalReference": "External ref", "internalId": 334455, "latitude": 0.1, "links": { … }, "longitude": 0.1, "recipient": "Recipient", "street": "My Street", "type": "WORK", "zip": 111111 }, "links": { "empty": true } }
curl -i -X GET \
'https://developer.fl3xx.com/_mock/reference/api/external/user/account/{externalReference}' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
{ "accountNumber": 1111, "accountid": 1111, "email": "email@fl3xx.com", "externalReference": "669665849-f120-4f65-6325-11111", "internalId": 632123, "mobile": 111111111, "name": "Account", "notes": "Notes", "phone": 111111111, "vatNumber": "A11111111111", "address": { "buildingDetails": "14th", "city": "Lisbon", "country": "Portugal", "externalReference": "External ref", "internalId": 334455, "latitude": 0.1, "links": { … }, "longitude": 0.1, "recipient": "Recipient", "street": "My Street", "type": "WORK", "zip": 111111 }, "links": { "empty": true } }
curl -i -X PUT \
'https://developer.fl3xx.com/_mock/reference/api/external/user/account/{externalReference}' \
-H 'Content-Type: application/json' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '{
"accountNumber": 1111,
"email": "email@fl3xx.com",
"externalReference": "669665849-f120-4f65-6325-11111",
"mobile": 111111111,
"name": "Account",
"notes": "Notes",
"phone": 111111111,
"vatNumber": "A11111111111",
"address": {
"buildingDetails": "14th",
"city": "Lisbon",
"country": "Portugal",
"externalReference": "External ref",
"latitude": 0.1,
"links": {
"empty": true
},
"longitude": 0.1,
"recipient": "Recipient",
"street": "My Street",
"type": "WORK",
"zip": 111111
},
"links": {
"empty": true
}
}'
{ "accountNumber": 1111, "accountid": 1111, "email": "email@fl3xx.com", "externalReference": "669665849-f120-4f65-6325-11111", "internalId": 632123, "mobile": 111111111, "name": "Account", "notes": "Notes", "phone": 111111111, "vatNumber": "A11111111111", "address": { "buildingDetails": "14th", "city": "Lisbon", "country": "Portugal", "externalReference": "External ref", "internalId": 334455, "latitude": 0.1, "links": { … }, "longitude": 0.1, "recipient": "Recipient", "street": "My Street", "type": "WORK", "zip": 111111 }, "links": { "empty": true } }
curl -i -X DELETE \
'https://developer.fl3xx.com/_mock/reference/api/external/user/account/{externalReference}' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'