Documentation
    Preparing search index...
    • Parameters

      Returns Omit<
          {
              payloadAttributes?: {
                  correlationID?: string;
                  echoTokenText?: string;
                  timeStamp?: string;
                  transactionID?: string;
              };
              requestType: string;
          },
          "requestType",
      > & {
          pointOfSale: {
              agentDutyCode?: string;
              location: { cityCode: string; countryCode: string };
          };
          request: {
              offer: { offerId: string };
              paxes?: {
                  givenName?: string;
                  loyaltyProgramAccount?: {
                      accountNumber: string;
                      airline: string;
                      partnerProgram?: string;
                      tierPriority?: string;
                  }[];
                  paxID: string;
                  surname?: string;
              }[];
          };
      } & { requestType: "offerId" }

      seatMap

      • pointOfSale: { agentDutyCode?: string; location: { cityCode: string; countryCode: string } }

        Contains point of sale information.

        • OptionalagentDutyCode?: string

          Internally defines the agent authority to request changes.

          read
          
        • location: { cityCode: string; countryCode: string }

          Point of sale location information.

          • cityCode: string

            The three-letter IATA airport or city code. Refer to the IATA Airline Coding Directory for a full list of values.

            TPA
            
          • countryCode: string

            The ISO 3166-1 (two character) country code.

            US
            
      • request: {
            offer: { offerId: string };
            paxes?: {
                givenName?: string;
                loyaltyProgramAccount?: {
                    accountNumber: string;
                    airline: string;
                    partnerProgram?: string;
                    tierPriority?: string;
                }[];
                paxID: string;
                surname?: string;
            }[];
        }

        Contains the offer associated with the seat map.

        • offer: { offerId: string }

          Contains the offer ID/offer item ID associated with the seat map.

          • offerId: string

            The unique ID of the NDC Offer associated with the seat maps to return in the offerId request.

        • Optionalpaxes?: {
              givenName?: string;
              loyaltyProgramAccount?: {
                  accountNumber: string;
                  airline: string;
                  partnerProgram?: string;
                  tierPriority?: string;
              }[];
              paxID: string;
              surname?: string;
          }[]

          Lists passenger information.

      • requestType: "offerId"

        discriminator enum property added by openapi-typescript