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?limit=100&offset=0' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE'
[ { "internalId": 485949, "externalReference": "665321646", "firstName": "Luke", "lastName": "Joe", "gender": "MALE", "birthDate": "1988-03-18", "birthPlace": "Conroe", "acronym": "LJ", "birthCountry": "US", "account": { … }, "address": { … }, "email": "myemail@fl3xx.com", "documentExpiration": "2030-04-03", "documentExternalReference": 69905, "documentNumber": "CC4AA3390294NJ", "documentType": "PASSPORT", "issueCountry": "USA", "issueDate": "2020-04-02", "links": { … }, "logName": "string", "mobile": 1111111111, "nationality": "US", "personnelNumber": 996659598, "phone": 11111111111, "radiationProtectionRegistryId": 1112221112221, "salutation": "Mr", "siflType": "CONTROL", "status": "ACTIVE", "weight": 80.5 } ]
user
Type of document
curl -i -X POST \
https://developer.fl3xx.com/_mock/reference/api/external/user \
-H 'Content-Type: application/json' \
-H 'X-Auth-Token: YOUR_API_KEY_HERE' \
-d '{
"externalReference": "665321646",
"firstName": "Luke",
"lastName": "Joe",
"gender": "MALE",
"birthDate": "1988-03-18",
"birthPlace": "Conroe",
"acronym": "LJ",
"birthCountry": "US",
"account": {
"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
}
},
"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
},
"email": "myemail@fl3xx.com",
"documentExpiration": "2030-04-03",
"documentExternalReference": 69905,
"documentNumber": "CC4AA3390294NJ",
"documentType": "PASSPORT",
"issueCountry": "USA",
"issueDate": "2020-04-02",
"links": {
"empty": true
},
"logName": "string",
"mobile": 1111111111,
"nationality": "US",
"personnelNumber": 996659598,
"phone": 11111111111,
"radiationProtectionRegistryId": 1112221112221,
"salutation": "Mr",
"siflType": "CONTROL",
"status": "ACTIVE",
"weight": 80.5
}'