OBJECT

IataMessagesQuery

Node for IATA messages

link GraphQL Schema definition

  • type IataMessagesQuery {
  • # ASM message.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNidList: [Not documented]
  • # action: [Not documented]
  • # timeMode: [Not documented]
  • getAsmMessage(
  • flightNidList: [FlightNid!]!,
  • action: AsmAction!,
  • timeMode: TimeMode
  • ): String!
  • # SSIM settings.
  • # Requires access to resource SSIM_EDIT
  • getSsimSettings: [SsimSetting!]!
  • # Requires access to resource SSIM_EDIT.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • getSsimLastActions(flightNid: FlightNid!): [SsimSent!]!
  • # List of warnings, that may prevent automatic sending of SSIM messages
  • validateSsimAutoSend: [String!]!
  • # List of warnings, that may prevent automatic sending of SSIM messages on SCHED
  • # published schedule
  • validateSchedAutoSend: [String!]!
  • # Test FTP server connection. On failure returns error message.
  • #
  • # Arguments
  • # protocolType: [Not documented]
  • # host: [Not documented]
  • # port: [Not documented]
  • # user: [Not documented]
  • # password: [Not documented]
  • ftpLoginTest(
  • protocolType: SsimProtocolType!,
  • host: NotEmptyString!,
  • port: IntPositive!,
  • user: NotEmptyString!,
  • password: NotEmptyString!
  • ): String
  • # Requires access to resource GRAPHQL_SCHEDULE_ORDER_SEE
  • #
  • # Arguments
  • # schedVersionNid: [Not documented]
  • # ssimFile: [Not documented]
  • # carrierCodeFormat: [Not documented]
  • parseSsimFile(
  • schedVersionNid: SchedVersionNid!,
  • ssimFile: Upload!,
  • carrierCodeFormat: CarrierCodeFormat!
  • ): SsimFileParseResponse!
  • # Requires access to resource GRAPHQL_SCHEDULE_ORDER_SEE
  • #
  • # Arguments
  • # schedVersionNid: [Not documented]
  • # excelFile: [Not documented]
  • parseExcelSchedFile(
  • schedVersionNid: SchedVersionNid!,
  • excelFile: Upload!
  • ): SchedExcelFileParseResponse!
  • # Requires access to resource GRAPHQL_PASSENGER
  • #
  • # Arguments
  • # tripNid: [Not documented]
  • getTripPnlList(tripNid: TripNid!): String!
  • # Requires access to resource GRAPHQL_PASSENGER.
  • # Requires access to given flight
  • #
  • # Arguments
  • # flightNid: [Not documented]
  • getFlightPnl(flightNid: FlightNid!): String!
  • # time interval has to be shorter than 1 month
  • #
  • # Arguments
  • # timeInterval: [Not documented]
  • getOpsSsim(timeInterval: TimeIntervalInput!): String!
  • # Requires access to resource GRAPHQL_SCHEDULE_ORDER_SEE.
  • # time interval has to be shorter than 12 months 6 days
  • #
  • # Arguments
  • # schedVersionNid: [Not documented]
  • # timeInterval: [Not documented]
  • getSchedVersionSsim(
  • schedVersionNid: SchedVersionNid!,
  • timeInterval: TimeIntervalInput!
  • ): String!
  • # Requires access to resource GRAPHQL_SCHEDULE_ORDER_SEE
  • #
  • # Arguments
  • # schedFlightList: [Not documented]
  • schedSelectedActivitiesVersionSsim(
  • schedFlightList: [SchedFlightNid!]!
  • ): String!
  • }