Skip to main content

flight-support/mutation/setFlightSupportAvailableAirportServiceList

mutation {
integration {
flightSupport {
setFlightSupportAvailableAirportServiceList(
# Specify the list of services you provide per airport, if the availability is other than the full list defined by default.
# Using that mutation will activate the feature which requires you to provide services list for each airport.
# It means if you do not add services for a particular location, no services will be available there.
# Unavailable services will be shown as crossed out in the list.
# Only ADEP/ADES services can be defined, enroute services are always available as per the default list.
# If you want to return to the default full list for all airports, send mutation with the empty array.
# This configuration works for each operator separately.
airportServices: [
{
airportCode: "EPWA"
serviceList: [
HANDLING_ADEP
HANDLING_ADES
FUEL_ADEP
SLOT_ADEP
PAX_TRANSPORT_ADEP
PAX_TRANSPORT_ADES
HOTEL_ADES
CREW_TRANSPORT_ADEP
CREW_TRANSPORT_ADES
CATERING_ADEP
]
}
{
airportCode: "EPKK"
serviceList: [
HANDLING_ADEP
HANDLING_ADES
PPR_ADEP
PPR_ADES
FUEL_ADEP
PAX_TRANSPORT_ADEP
PAX_TRANSPORT_ADES
HOTEL_ADES
]
}
]
)
}
}
}