FL3XX API (1.0.0)

FL3XX API allows partners to access flight information, airport details, and a vast array of aviation services.

Download OpenAPI description
Overview
URL https://www.fl3xx.com
FL3XX Integration Support integrations@fl3xx.com
License MIT
Languages
Servers
Mock server
https://developer.fl3xx.com/_mock/reference/
Sandbox server
https://test.fl3xx.com/

Accounting

Operations related to accounting.

Operations

Accounts

Operations related accounts.

Operations

Airports

Access and manage airport information.

Operations

Aircraft

Operations related to aircraft.

Operations

Booking Itinerary (Legs)

Operations related to flight itinerary legs.

Operations

Crew

Operations related to crew details.

Operations

Empty Legs

Operations related to empty leg flights.

Operations

Flights

Operations related to flights.

Operations

Flight Animals

Operations related flight animals.

Operations

Flight Cargo

Operations related to flight cargo.

Operations

Flight Crew

Operations related to crew for individual flights.

Operations

Flight Fixed Base Operator (FBO)

Operations related to FBO.

Operations

Flight Fuels

Operations related to fuel for flights.

Operations

Flight Ground Services

Operations related to ground services.

Operations

Get Flight Ground Services

Request

Fetches service information for a specific flight using its flight ID. Ground Handling, Transportation, Hotac, Catering.

Path
idinteger(int64)required

id

curl -i -X GET \
  'https://developer.fl3xx.com/_mock/reference/api/external/flight/{id}/services' \
  -H 'X-Auth-Token: YOUR_API_KEY_HERE'

Responses

Success

Bodyapplication/json
aircraftIdinteger(int64)
arrivalCateringobject(CateringDto)
arrivalCateringListArray of objects(CateringDto)
arrivalGroundTransportationArray of objects(GroundTransportationDto)
arrivalHandlerobject(HandlerDto)
arrivalHotacArray of objects(HotacDto)
bookingstring
bookingIdinteger(int64)
cateringobject(CateringDto)
cateringListArray of objects(CateringDto)
departureGroundTransportationArray of objects(GroundTransportationDto)
departureHandlerobject(HandlerDto)
departureHotacArray of objects(HotacDto)
flightstring
mtowUnitstring
Enum"KILOGRAM""POUND"
reducedRestEnabledboolean
tailNumberstring
Response
application/json
{ "aircraftId": 0, "arrivalCatering": { "airportId": 0, "by": "HANDLER", "cancellationRequired": true, "cateringService": {}, "cost": 0, "currency": "string", "deliveryDate": "2019-08-24T14:15:22Z", "details": "string", "documents": [], "externalNote": "string", "externalSource": "B2C", "externalStatus": "string", "flightBridgeNote": "string", "id": 0, "meals": "string", "notes": "string", "paxNotes": "string", "permitProviderId": 0, "person": {}, "poCreatedDate": "2019-08-24T14:15:22Z", "poNumber": "string", "price": 0, "serviceFor": "Crew", "status": "NA", "updatedDate": "2019-08-24T14:15:22Z" }, "arrivalCateringList": [ {} ], "arrivalGroundTransportation": [ {} ], "arrivalHandler": { "airportId": 0, "airportService": {}, "by": "HANDLER", "cancellationRequired": true, "cost": 0, "documents": [], "externalNote": "string", "externalReference": "string", "externalSource": "B2C", "externalStatus": "string", "fboId": 0, "flightBridgeNote": "string", "handlingType": "HANDLING_REQUEST", "id": 0, "permitProviderId": 0, "poCreatedDate": "2019-08-24T14:15:22Z", "poNumber": "string", "price": 0, "remarks": "string", "request": "string", "requestedDate": "2019-08-24T14:15:22Z", "serviceLogs": [], "status": "NA", "updatedDate": "2019-08-24T14:15:22Z", "useFboOne": true, "useMyHandling": true }, "arrivalHotac": [ {} ], "booking": "string", "bookingId": 0, "catering": { "airportId": 0, "by": "HANDLER", "cancellationRequired": true, "cateringService": {}, "cost": 0, "currency": "string", "deliveryDate": "2019-08-24T14:15:22Z", "details": "string", "documents": [], "externalNote": "string", "externalSource": "B2C", "externalStatus": "string", "flightBridgeNote": "string", "id": 0, "meals": "string", "notes": "string", "paxNotes": "string", "permitProviderId": 0, "person": {}, "poCreatedDate": "2019-08-24T14:15:22Z", "poNumber": "string", "price": 0, "serviceFor": "Crew", "status": "NA", "updatedDate": "2019-08-24T14:15:22Z" }, "cateringList": [ {} ], "departureGroundTransportation": [ {} ], "departureHandler": { "airportId": 0, "airportService": {}, "by": "HANDLER", "cancellationRequired": true, "cost": 0, "documents": [], "externalNote": "string", "externalReference": "string", "externalSource": "B2C", "externalStatus": "string", "fboId": 0, "flightBridgeNote": "string", "handlingType": "HANDLING_REQUEST", "id": 0, "permitProviderId": 0, "poCreatedDate": "2019-08-24T14:15:22Z", "poNumber": "string", "price": 0, "remarks": "string", "request": "string", "requestedDate": "2019-08-24T14:15:22Z", "serviceLogs": [], "status": "NA", "updatedDate": "2019-08-24T14:15:22Z", "useFboOne": true, "useMyHandling": true }, "departureHotac": [ {} ], "flight": "string", "mtowUnit": "KILOGRAM", "reducedRestEnabled": true, "tailNumber": "string" }

Submit Flight Ground Service

Request

Submits service information for a specific flight using its flight ID. Ground Handling, Transportation, Hotac, Catering.

Path
idinteger(int64)required

id

Bodyapplication/jsonrequired

dto

aircraftIdinteger(int64)
arrivalCateringobject(CateringDto_1)
arrivalCateringListArray of objects(CateringDto_1)
arrivalGroundTransportationArray of objects(GroundTransportationDto_1)
arrivalHandlerobject(HandlerDto_1)
arrivalHotacArray of objects(HotacDto_1)
bookingstring
bookingIdinteger(int64)
cateringobject(CateringDto_1)
cateringListArray of objects(CateringDto_1)
departureGroundTransportationArray of objects(GroundTransportationDto_1)
departureHandlerobject(HandlerDto_1)
departureHotacArray of objects(HotacDto_1)
flightstring
mtowUnitstring
Enum"KILOGRAM""POUND"
reducedRestEnabledboolean
tailNumberstring
curl -i -X POST \
  'https://developer.fl3xx.com/_mock/reference/api/external/flight/{id}/services' \
  -H 'Content-Type: application/json' \
  -H 'X-Auth-Token: YOUR_API_KEY_HERE' \
  -d '{
    "aircraftId": 0,
    "arrivalCatering": {
      "airportId": 0,
      "by": "HANDLER",
      "cancellationRequired": true,
      "cateringService": {
        "address": "string",
        "aftn": "string",
        "airportId": 0,
        "company": "string",
        "created": "2019-08-24T14:15:22Z",
        "crewNotes": "string",
        "deleted": true,
        "dispatchNotes": "string",
        "email": "string",
        "fax": "string",
        "fboOneShadow": true,
        "fboOneTeamEmail": "string",
        "feeWaiverUnit": "LITER",
        "feeWaiverVolume": 0.1,
        "global": true,
        "homepage": "string",
        "id": 0,
        "info": "string",
        "lastUpdated": "2019-08-24T14:15:22Z",
        "mainContact": true,
        "open24H": true,
        "openFrom": "2019-08-24T14:15:22Z",
        "openTo": "2019-08-24T14:15:22Z",
        "openingHours": "string",
        "passengerNotes": "string",
        "phone": "string",
        "phoneTollFree": "string",
        "priceDate": "2019-08-24T14:15:22Z",
        "priceInfo": "string",
        "radio": "string",
        "ranking": 0,
        "sita": "string",
        "source": "string",
        "sourceType": "INTERNAL",
        "type": {
          "id": 0,
          "name": "string"
        },
        "useFboOne": true,
        "useMyHandling": true,
        "vendorId": "string"
      },
      "cost": 0,
      "currency": "string",
      "deliveryDate": "2019-08-24T14:15:22Z",
      "details": "string",
      "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"
        }
      ],
      "externalNote": "string",
      "externalSource": "B2C",
      "externalStatus": "string",
      "flightBridgeNote": "string",
      "id": 0,
      "meals": "string",
      "notes": "string",
      "paxNotes": "string",
      "permitProviderId": 0,
      "person": {
        "accountName": "string",
        "firstName": "string",
        "gender": "FEMALE",
        "height": 0.1,
        "id": 0,
        "jobTitle": "string",
        "lastName": "string",
        "middleName": "string",
        "nationalityCountryName": "string",
        "nickname": "string",
        "personnelNumber": "string",
        "pilot": true,
        "status": "ACTIVE",
        "userCharacteristics": {
          "defaultLuggageWeight": 0.1,
          "eyeColor": "string",
          "hairColor": "string"
        },
        "weight": 0.1
      },
      "poCreatedDate": "2019-08-24T14:15:22Z",
      "poNumber": "string",
      "price": 0,
      "serviceFor": "Crew",
      "status": "NA",
      "updatedDate": "2019-08-24T14:15:22Z"
    },
    "arrivalCateringList": [
      {
        "airportId": 0,
        "by": "HANDLER",
        "cancellationRequired": true,
        "cateringService": {
          "address": "string",
          "aftn": "string",
          "airportId": 0,
          "company": "string",
          "created": "2019-08-24T14:15:22Z",
          "crewNotes": "string",
          "deleted": true,
          "dispatchNotes": "string",
          "email": "string",
          "fax": "string",
          "fboOneShadow": true,
          "fboOneTeamEmail": "string",
          "feeWaiverUnit": "LITER",
          "feeWaiverVolume": 0.1,
          "global": true,
          "homepage": "string",
          "id": 0,
          "info": "string",
          "lastUpdated": "2019-08-24T14:15:22Z",
          "mainContact": true,
          "open24H": true,
          "openFrom": "2019-08-24T14:15:22Z",
          "openTo": "2019-08-24T14:15:22Z",
          "openingHours": "string",
          "passengerNotes": "string",
          "phone": "string",
          "phoneTollFree": "string",
          "priceDate": "2019-08-24T14:15:22Z",
          "priceInfo": "string",
          "radio": "string",
          "ranking": 0,
          "sita": "string",
          "source": "string",
          "sourceType": "INTERNAL",
          "type": {
            "id": 0,
            "name": "string"
          },
          "useFboOne": true,
          "useMyHandling": true,
          "vendorId": "string"
        },
        "cost": 0,
        "currency": "string",
        "deliveryDate": "2019-08-24T14:15:22Z",
        "details": "string",
        "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"
          }
        ],
        "externalNote": "string",
        "externalSource": "B2C",
        "externalStatus": "string",
        "flightBridgeNote": "string",
        "id": 0,
        "meals": "string",
        "notes": "string",
        "paxNotes": "string",
        "permitProviderId": 0,
        "person": {
          "accountName": "string",
          "firstName": "string",
          "gender": "FEMALE",
          "height": 0.1,
          "id": 0,
          "jobTitle": "string",
          "lastName": "string",
          "middleName": "string",
          "nationalityCountryName": "string",
          "nickname": "string",
          "personnelNumber": "string",
          "pilot": true,
          "status": "ACTIVE",
          "userCharacteristics": {
            "defaultLuggageWeight": 0.1,
            "eyeColor": "string",
            "hairColor": "string"
          },
          "weight": 0.1
        },
        "poCreatedDate": "2019-08-24T14:15:22Z",
        "poNumber": "string",
        "price": 0,
        "serviceFor": "Crew",
        "status": "NA",
        "updatedDate": "2019-08-24T14:15:22Z"
      }
    ],
    "arrivalGroundTransportation": [
      {
        "airportId": 0,
        "by": "HANDLER",
        "cancellationRequired": true,
        "cost": 0,
        "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"
          }
        ],
        "externalNote": "string",
        "externalServiceId": "string",
        "externalSource": "B2C",
        "externalStatus": "string",
        "flightBridgeNote": "string",
        "groundTransportationService": {
          "address": "string",
          "aftn": "string",
          "airportId": 0,
          "company": "string",
          "created": "2019-08-24T14:15:22Z",
          "crewNotes": "string",
          "deleted": true,
          "dispatchNotes": "string",
          "email": "string",
          "fax": "string",
          "fboOneShadow": true,
          "fboOneTeamEmail": "string",
          "feeWaiverUnit": "LITER",
          "feeWaiverVolume": 0.1,
          "global": true,
          "homepage": "string",
          "id": 0,
          "info": "string",
          "lastUpdated": "2019-08-24T14:15:22Z",
          "mainContact": true,
          "open24H": true,
          "openFrom": "2019-08-24T14:15:22Z",
          "openTo": "2019-08-24T14:15:22Z",
          "openingHours": "string",
          "passengerNotes": "string",
          "phone": "string",
          "phoneTollFree": "string",
          "priceDate": "2019-08-24T14:15:22Z",
          "priceInfo": "string",
          "radio": "string",
          "ranking": 0,
          "sita": "string",
          "source": "string",
          "sourceType": "INTERNAL",
          "type": {
            "id": 0,
            "name": "string"
          },
          "useFboOne": true,
          "useMyHandling": true,
          "vendorId": "string"
        },
        "id": 0,
        "notes": "string",
        "permitProviderId": 0,
        "person": {
          "accountName": "string",
          "firstName": "string",
          "gender": "FEMALE",
          "height": 0.1,
          "id": 0,
          "jobTitle": "string",
          "lastName": "string",
          "middleName": "string",
          "nationalityCountryName": "string",
          "nickname": "string",
          "personnelNumber": "string",
          "pilot": true,
          "status": "ACTIVE",
          "userCharacteristics": {
            "defaultLuggageWeight": 0.1,
            "eyeColor": "string",
            "hairColor": "string"
          },
          "weight": 0.1
        },
        "poCreatedDate": "2019-08-24T14:15:22Z",
        "poNumber": "string",
        "price": 0,
        "serviceFor": "Crew",
        "status": "NA",
        "type": "string",
        "updatedDate": "2019-08-24T14:15:22Z"
      }
    ],
    "arrivalHandler": {
      "airportId": 0,
      "airportService": {
        "address": "string",
        "aftn": "string",
        "airportId": 0,
        "company": "string",
        "created": "2019-08-24T14:15:22Z",
        "crewNotes": "string",
        "deleted": true,
        "dispatchNotes": "string",
        "email": "string",
        "fax": "string",
        "fboOneShadow": true,
        "fboOneTeamEmail": "string",
        "feeWaiverUnit": "LITER",
        "feeWaiverVolume": 0.1,
        "global": true,
        "homepage": "string",
        "id": 0,
        "info": "string",
        "lastUpdated": "2019-08-24T14:15:22Z",
        "mainContact": true,
        "open24H": true,
        "openFrom": "2019-08-24T14:15:22Z",
        "openTo": "2019-08-24T14:15:22Z",
        "openingHours": "string",
        "passengerNotes": "string",
        "phone": "string",
        "phoneTollFree": "string",
        "priceDate": "2019-08-24T14:15:22Z",
        "priceInfo": "string",
        "radio": "string",
        "ranking": 0,
        "sita": "string",
        "source": "string",
        "sourceType": "INTERNAL",
        "type": {
          "id": 0,
          "name": "string"
        },
        "useFboOne": true,
        "useMyHandling": true,
        "vendorId": "string"
      },
      "by": "HANDLER",
      "cancellationRequired": true,
      "cost": 0,
      "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"
        }
      ],
      "externalNote": "string",
      "externalReference": "string",
      "externalSource": "B2C",
      "externalStatus": "string",
      "fboId": 0,
      "flightBridgeNote": "string",
      "handlingType": "HANDLING_REQUEST",
      "id": 0,
      "permitProviderId": 0,
      "poCreatedDate": "2019-08-24T14:15:22Z",
      "poNumber": "string",
      "price": 0,
      "remarks": "string",
      "request": "string",
      "requestedDate": "2019-08-24T14:15:22Z",
      "serviceLogs": [
        {
          "property1": {},
          "property2": {}
        }
      ],
      "status": "NA",
      "updatedDate": "2019-08-24T14:15:22Z",
      "useFboOne": true,
      "useMyHandling": true
    },
    "arrivalHotac": [
      {
        "airportId": 0,
        "by": "HANDLER",
        "cancellationRequired": true,
        "cost": 0,
        "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"
          }
        ],
        "externalNote": "string",
        "externalSource": "B2C",
        "externalStatus": "string",
        "flightBridgeNote": "string",
        "hotacService": {
          "address": "string",
          "aftn": "string",
          "airportId": 0,
          "company": "string",
          "created": "2019-08-24T14:15:22Z",
          "crewNotes": "string",
          "deleted": true,
          "dispatchNotes": "string",
          "email": "string",
          "fax": "string",
          "fboOneShadow": true,
          "fboOneTeamEmail": "string",
          "feeWaiverUnit": "LITER",
          "feeWaiverVolume": 0.1,
          "global": true,
          "homepage": "string",
          "id": 0,
          "info": "string",
          "lastUpdated": "2019-08-24T14:15:22Z",
          "mainContact": true,
          "open24H": true,
          "openFrom": "2019-08-24T14:15:22Z",
          "openTo": "2019-08-24T14:15:22Z",
          "openingHours": "string",
          "passengerNotes": "string",
          "phone": "string",
          "phoneTollFree": "string",
          "priceDate": "2019-08-24T14:15:22Z",
          "priceInfo": "string",
          "radio": "string",
          "ranking": 0,
          "sita": "string",
          "source": "string",
          "sourceType": "INTERNAL",
          "type": {
            "id": 0,
            "name": "string"
          },
          "useFboOne": true,
          "useMyHandling": true,
          "vendorId": "string"
        },
        "hotel": "string",
        "id": 0,
        "notes": "string",
        "permitProviderId": 0,
        "person": {
          "accountName": "string",
          "firstName": "string",
          "gender": "FEMALE",
          "height": 0.1,
          "id": 0,
          "jobTitle": "string",
          "lastName": "string",
          "middleName": "string",
          "nationalityCountryName": "string",
          "nickname": "string",
          "personnelNumber": "string",
          "pilot": true,
          "status": "ACTIVE",
          "userCharacteristics": {
            "defaultLuggageWeight": 0.1,
            "eyeColor": "string",
            "hairColor": "string"
          },
          "weight": 0.1
        },
        "poCreatedDate": "2019-08-24T14:15:22Z",
        "poNumber": "string",
        "price": 0,
        "reservationId": "string",
        "serviceFor": "Crew",
        "status": "NA",
        "targetFor": "string",
        "updatedDate": "2019-08-24T14:15:22Z"
      }
    ],
    "booking": "string",
    "bookingId": 0,
    "catering": {
      "airportId": 0,
      "by": "HANDLER",
      "cancellationRequired": true,
      "cateringService": {
        "address": "string",
        "aftn": "string",
        "airportId": 0,
        "company": "string",
        "created": "2019-08-24T14:15:22Z",
        "crewNotes": "string",
        "deleted": true,
        "dispatchNotes": "string",
        "email": "string",
        "fax": "string",
        "fboOneShadow": true,
        "fboOneTeamEmail": "string",
        "feeWaiverUnit": "LITER",
        "feeWaiverVolume": 0.1,
        "global": true,
        "homepage": "string",
        "id": 0,
        "info": "string",
        "lastUpdated": "2019-08-24T14:15:22Z",
        "mainContact": true,
        "open24H": true,
        "openFrom": "2019-08-24T14:15:22Z",
        "openTo": "2019-08-24T14:15:22Z",
        "openingHours": "string",
        "passengerNotes": "string",
        "phone": "string",
        "phoneTollFree": "string",
        "priceDate": "2019-08-24T14:15:22Z",
        "priceInfo": "string",
        "radio": "string",
        "ranking": 0,
        "sita": "string",
        "source": "string",
        "sourceType": "INTERNAL",
        "type": {
          "id": 0,
          "name": "string"
        },
        "useFboOne": true,
        "useMyHandling": true,
        "vendorId": "string"
      },
      "cost": 0,
      "currency": "string",
      "deliveryDate": "2019-08-24T14:15:22Z",
      "details": "string",
      "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"
        }
      ],
      "externalNote": "string",
      "externalSource": "B2C",
      "externalStatus": "string",
      "flightBridgeNote": "string",
      "id": 0,
      "meals": "string",
      "notes": "string",
      "paxNotes": "string",
      "permitProviderId": 0,
      "person": {
        "accountName": "string",
        "firstName": "string",
        "gender": "FEMALE",
        "height": 0.1,
        "id": 0,
        "jobTitle": "string",
        "lastName": "string",
        "middleName": "string",
        "nationalityCountryName": "string",
        "nickname": "string",
        "personnelNumber": "string",
        "pilot": true,
        "status": "ACTIVE",
        "userCharacteristics": {
          "defaultLuggageWeight": 0.1,
          "eyeColor": "string",
          "hairColor": "string"
        },
        "weight": 0.1
      },
      "poCreatedDate": "2019-08-24T14:15:22Z",
      "poNumber": "string",
      "price": 0,
      "serviceFor": "Crew",
      "status": "NA",
      "updatedDate": "2019-08-24T14:15:22Z"
    },
    "cateringList": [
      {
        "airportId": 0,
        "by": "HANDLER",
        "cancellationRequired": true,
        "cateringService": {
          "address": "string",
          "aftn": "string",
          "airportId": 0,
          "company": "string",
          "created": "2019-08-24T14:15:22Z",
          "crewNotes": "string",
          "deleted": true,
          "dispatchNotes": "string",
          "email": "string",
          "fax": "string",
          "fboOneShadow": true,
          "fboOneTeamEmail": "string",
          "feeWaiverUnit": "LITER",
          "feeWaiverVolume": 0.1,
          "global": true,
          "homepage": "string",
          "id": 0,
          "info": "string",
          "lastUpdated": "2019-08-24T14:15:22Z",
          "mainContact": true,
          "open24H": true,
          "openFrom": "2019-08-24T14:15:22Z",
          "openTo": "2019-08-24T14:15:22Z",
          "openingHours": "string",
          "passengerNotes": "string",
          "phone": "string",
          "phoneTollFree": "string",
          "priceDate": "2019-08-24T14:15:22Z",
          "priceInfo": "string",
          "radio": "string",
          "ranking": 0,
          "sita": "string",
          "source": "string",
          "sourceType": "INTERNAL",
          "type": {
            "id": 0,
            "name": "string"
          },
          "useFboOne": true,
          "useMyHandling": true,
          "vendorId": "string"
        },
        "cost": 0,
        "currency": "string",
        "deliveryDate": "2019-08-24T14:15:22Z",
        "details": "string",
        "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"
          }
        ],
        "externalNote": "string",
        "externalSource": "B2C",
        "externalStatus": "string",
        "flightBridgeNote": "string",
        "id": 0,
        "meals": "string",
        "notes": "string",
        "paxNotes": "string",
        "permitProviderId": 0,
        "person": {
          "accountName": "string",
          "firstName": "string",
          "gender": "FEMALE",
          "height": 0.1,
          "id": 0,
          "jobTitle": "string",
          "lastName": "string",
          "middleName": "string",
          "nationalityCountryName": "string",
          "nickname": "string",
          "personnelNumber": "string",
          "pilot": true,
          "status": "ACTIVE",
          "userCharacteristics": {
            "defaultLuggageWeight": 0.1,
            "eyeColor": "string",
            "hairColor": "string"
          },
          "weight": 0.1
        },
        "poCreatedDate": "2019-08-24T14:15:22Z",
        "poNumber": "string",
        "price": 0,
        "serviceFor": "Crew",
        "status": "NA",
        "updatedDate": "2019-08-24T14:15:22Z"
      }
    ],
    "departureGroundTransportation": [
      {
        "airportId": 0,
        "by": "HANDLER",
        "cancellationRequired": true,
        "cost": 0,
        "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"
          }
        ],
        "externalNote": "string",
        "externalServiceId": "string",
        "externalSource": "B2C",
        "externalStatus": "string",
        "flightBridgeNote": "string",
        "groundTransportationService": {
          "address": "string",
          "aftn": "string",
          "airportId": 0,
          "company": "string",
          "created": "2019-08-24T14:15:22Z",
          "crewNotes": "string",
          "deleted": true,
          "dispatchNotes": "string",
          "email": "string",
          "fax": "string",
          "fboOneShadow": true,
          "fboOneTeamEmail": "string",
          "feeWaiverUnit": "LITER",
          "feeWaiverVolume": 0.1,
          "global": true,
          "homepage": "string",
          "id": 0,
          "info": "string",
          "lastUpdated": "2019-08-24T14:15:22Z",
          "mainContact": true,
          "open24H": true,
          "openFrom": "2019-08-24T14:15:22Z",
          "openTo": "2019-08-24T14:15:22Z",
          "openingHours": "string",
          "passengerNotes": "string",
          "phone": "string",
          "phoneTollFree": "string",
          "priceDate": "2019-08-24T14:15:22Z",
          "priceInfo": "string",
          "radio": "string",
          "ranking": 0,
          "sita": "string",
          "source": "string",
          "sourceType": "INTERNAL",
          "type": {
            "id": 0,
            "name": "string"
          },
          "useFboOne": true,
          "useMyHandling": true,
          "vendorId": "string"
        },
        "id": 0,
        "notes": "string",
        "permitProviderId": 0,
        "person": {
          "accountName": "string",
          "firstName": "string",
          "gender": "FEMALE",
          "height": 0.1,
          "id": 0,
          "jobTitle": "string",
          "lastName": "string",
          "middleName": "string",
          "nationalityCountryName": "string",
          "nickname": "string",
          "personnelNumber": "string",
          "pilot": true,
          "status": "ACTIVE",
          "userCharacteristics": {
            "defaultLuggageWeight": 0.1,
            "eyeColor": "string",
            "hairColor": "string"
          },
          "weight": 0.1
        },
        "poCreatedDate": "2019-08-24T14:15:22Z",
        "poNumber": "string",
        "price": 0,
        "serviceFor": "Crew",
        "status": "NA",
        "type": "string",
        "updatedDate": "2019-08-24T14:15:22Z"
      }
    ],
    "departureHandler": {
      "airportId": 0,
      "airportService": {
        "address": "string",
        "aftn": "string",
        "airportId": 0,
        "company": "string",
        "created": "2019-08-24T14:15:22Z",
        "crewNotes": "string",
        "deleted": true,
        "dispatchNotes": "string",
        "email": "string",
        "fax": "string",
        "fboOneShadow": true,
        "fboOneTeamEmail": "string",
        "feeWaiverUnit": "LITER",
        "feeWaiverVolume": 0.1,
        "global": true,
        "homepage": "string",
        "id": 0,
        "info": "string",
        "lastUpdated": "2019-08-24T14:15:22Z",
        "mainContact": true,
        "open24H": true,
        "openFrom": "2019-08-24T14:15:22Z",
        "openTo": "2019-08-24T14:15:22Z",
        "openingHours": "string",
        "passengerNotes": "string",
        "phone": "string",
        "phoneTollFree": "string",
        "priceDate": "2019-08-24T14:15:22Z",
        "priceInfo": "string",
        "radio": "string",
        "ranking": 0,
        "sita": "string",
        "source": "string",
        "sourceType": "INTERNAL",
        "type": {
          "id": 0,
          "name": "string"
        },
        "useFboOne": true,
        "useMyHandling": true,
        "vendorId": "string"
      },
      "by": "HANDLER",
      "cancellationRequired": true,
      "cost": 0,
      "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"
        }
      ],
      "externalNote": "string",
      "externalReference": "string",
      "externalSource": "B2C",
      "externalStatus": "string",
      "fboId": 0,
      "flightBridgeNote": "string",
      "handlingType": "HANDLING_REQUEST",
      "id": 0,
      "permitProviderId": 0,
      "poCreatedDate": "2019-08-24T14:15:22Z",
      "poNumber": "string",
      "price": 0,
      "remarks": "string",
      "request": "string",
      "requestedDate": "2019-08-24T14:15:22Z",
      "serviceLogs": [
        {
          "property1": {},
          "property2": {}
        }
      ],
      "status": "NA",
      "updatedDate": "2019-08-24T14:15:22Z",
      "useFboOne": true,
      "useMyHandling": true
    },
    "departureHotac": [
      {
        "airportId": 0,
        "by": "HANDLER",
        "cancellationRequired": true,
        "cost": 0,
        "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"
          }
        ],
        "externalNote": "string",
        "externalSource": "B2C",
        "externalStatus": "string",
        "flightBridgeNote": "string",
        "hotacService": {
          "address": "string",
          "aftn": "string",
          "airportId": 0,
          "company": "string",
          "created": "2019-08-24T14:15:22Z",
          "crewNotes": "string",
          "deleted": true,
          "dispatchNotes": "string",
          "email": "string",
          "fax": "string",
          "fboOneShadow": true,
          "fboOneTeamEmail": "string",
          "feeWaiverUnit": "LITER",
          "feeWaiverVolume": 0.1,
          "global": true,
          "homepage": "string",
          "id": 0,
          "info": "string",
          "lastUpdated": "2019-08-24T14:15:22Z",
          "mainContact": true,
          "open24H": true,
          "openFrom": "2019-08-24T14:15:22Z",
          "openTo": "2019-08-24T14:15:22Z",
          "openingHours": "string",
          "passengerNotes": "string",
          "phone": "string",
          "phoneTollFree": "string",
          "priceDate": "2019-08-24T14:15:22Z",
          "priceInfo": "string",
          "radio": "string",
          "ranking": 0,
          "sita": "string",
          "source": "string",
          "sourceType": "INTERNAL",
          "type": {
            "id": 0,
            "name": "string"
          },
          "useFboOne": true,
          "useMyHandling": true,
          "vendorId": "string"
        },
        "hotel": "string",
        "id": 0,
        "notes": "string",
        "permitProviderId": 0,
        "person": {
          "accountName": "string",
          "firstName": "string",
          "gender": "FEMALE",
          "height": 0.1,
          "id": 0,
          "jobTitle": "string",
          "lastName": "string",
          "middleName": "string",
          "nationalityCountryName": "string",
          "nickname": "string",
          "personnelNumber": "string",
          "pilot": true,
          "status": "ACTIVE",
          "userCharacteristics": {
            "defaultLuggageWeight": 0.1,
            "eyeColor": "string",
            "hairColor": "string"
          },
          "weight": 0.1
        },
        "poCreatedDate": "2019-08-24T14:15:22Z",
        "poNumber": "string",
        "price": 0,
        "reservationId": "string",
        "serviceFor": "Crew",
        "status": "NA",
        "targetFor": "string",
        "updatedDate": "2019-08-24T14:15:22Z"
      }
    ],
    "flight": "string",
    "mtowUnit": "KILOGRAM",
    "reducedRestEnabled": true,
    "tailNumber": "string"
  }'

Responses

Success

Bodyapplication/json
aircraftIdinteger(int64)
arrivalCateringobject(CateringDto)
arrivalCateringListArray of objects(CateringDto)
arrivalGroundTransportationArray of objects(GroundTransportationDto)
arrivalHandlerobject(HandlerDto)
arrivalHotacArray of objects(HotacDto)
bookingstring
bookingIdinteger(int64)
cateringobject(CateringDto)
cateringListArray of objects(CateringDto)
departureGroundTransportationArray of objects(GroundTransportationDto)
departureHandlerobject(HandlerDto)
departureHotacArray of objects(HotacDto)
flightstring
mtowUnitstring
Enum"KILOGRAM""POUND"
reducedRestEnabledboolean
tailNumberstring
Response
application/json
{ "aircraftId": 0, "arrivalCatering": { "airportId": 0, "by": "HANDLER", "cancellationRequired": true, "cateringService": {}, "cost": 0, "currency": "string", "deliveryDate": "2019-08-24T14:15:22Z", "details": "string", "documents": [], "externalNote": "string", "externalSource": "B2C", "externalStatus": "string", "flightBridgeNote": "string", "id": 0, "meals": "string", "notes": "string", "paxNotes": "string", "permitProviderId": 0, "person": {}, "poCreatedDate": "2019-08-24T14:15:22Z", "poNumber": "string", "price": 0, "serviceFor": "Crew", "status": "NA", "updatedDate": "2019-08-24T14:15:22Z" }, "arrivalCateringList": [ {} ], "arrivalGroundTransportation": [ {} ], "arrivalHandler": { "airportId": 0, "airportService": {}, "by": "HANDLER", "cancellationRequired": true, "cost": 0, "documents": [], "externalNote": "string", "externalReference": "string", "externalSource": "B2C", "externalStatus": "string", "fboId": 0, "flightBridgeNote": "string", "handlingType": "HANDLING_REQUEST", "id": 0, "permitProviderId": 0, "poCreatedDate": "2019-08-24T14:15:22Z", "poNumber": "string", "price": 0, "remarks": "string", "request": "string", "requestedDate": "2019-08-24T14:15:22Z", "serviceLogs": [], "status": "NA", "updatedDate": "2019-08-24T14:15:22Z", "useFboOne": true, "useMyHandling": true }, "arrivalHotac": [ {} ], "booking": "string", "bookingId": 0, "catering": { "airportId": 0, "by": "HANDLER", "cancellationRequired": true, "cateringService": {}, "cost": 0, "currency": "string", "deliveryDate": "2019-08-24T14:15:22Z", "details": "string", "documents": [], "externalNote": "string", "externalSource": "B2C", "externalStatus": "string", "flightBridgeNote": "string", "id": 0, "meals": "string", "notes": "string", "paxNotes": "string", "permitProviderId": 0, "person": {}, "poCreatedDate": "2019-08-24T14:15:22Z", "poNumber": "string", "price": 0, "serviceFor": "Crew", "status": "NA", "updatedDate": "2019-08-24T14:15:22Z" }, "cateringList": [ {} ], "departureGroundTransportation": [ {} ], "departureHandler": { "airportId": 0, "airportService": {}, "by": "HANDLER", "cancellationRequired": true, "cost": 0, "documents": [], "externalNote": "string", "externalReference": "string", "externalSource": "B2C", "externalStatus": "string", "fboId": 0, "flightBridgeNote": "string", "handlingType": "HANDLING_REQUEST", "id": 0, "permitProviderId": 0, "poCreatedDate": "2019-08-24T14:15:22Z", "poNumber": "string", "price": 0, "remarks": "string", "request": "string", "requestedDate": "2019-08-24T14:15:22Z", "serviceLogs": [], "status": "NA", "updatedDate": "2019-08-24T14:15:22Z", "useFboOne": true, "useMyHandling": true }, "departureHotac": [ {} ], "flight": "string", "mtowUnit": "KILOGRAM", "reducedRestEnabled": true, "tailNumber": "string" }

Flight Luggage

Operations related to luggage for flights.

Operations

Flight Migration

Operations related to migrations.

Operations

Flight Notifications

Operations related to notifications for flights.

Operations

Flight Passengers

Operations related to passenger for flights.

Operations

Flight PAX Details

Operations related to PAX details.

Operations

Flight Planning Notes

Operations related to planning notes for flights.

Operations

Flight Post Flight

Operations related to post-flight activities.

Operations

Flight Pre Flight

Operations related to pre-flight operations.

Operations

Flight Sanction List

Operations related to flight sanctions and approvals.

Operations

Flight Travel Authorization

Operations related to travel authorization.

Operations

Flight Tickets

Operations related to flight tickets.

Operations

Quotes

Operations related to flight quotes.

Operations

Roster

Operations related to Rosters.

Operations

Users

Operations related to Users.

Operations