SunExpress

Available Currencies

Value

Description

AED

UAE Dirham

CHF

Swiss Franc

DKK

Danish Krone

EUR

Euro

GBP

Great Britain Pound

NOK

Norwegian Krone

RUB

Russian Ruble

SEK

Swedish Krone

TRY

Turkish Lira

USD

United States Dollar

Available Tariffs

The following tariffs are open to public use:

  • SunLight

  • SunEco

  • SunClassic

  • SunPremium

Whenever no tariff is explicitly provided in the request, offers of the following tariffs will be returned by default:

  • SunEco

Supported salutations

The current implementation allows the following salutations:

  • MISS

  • MR

  • MRS

  • MS

  • MSTR

  • MX

Supported Forms of Payment

The current implementation allows the following forms of payment:

  • Credit Card

  • Cash Payment

B2B Interface URL

Test-Environment: https://xq-uat.aircenter7.com

Production-Environment: https://agency.sunexpress.com

Confirmation shipping logic

If a booking confirmation is to be sent to a specified email address, the parameter “sendItineraryTo” must be specified in the ContactInfoList. If the parameter is not set, no confirmation will be sent from the airline system.

Contact data with parameter

<ContactInfoList>
        <ContactInfo>
           <ContactInfoID>C1</ContactInfoID>
           <ContactPurposeText>Primary</ContactPurposeText>
           <EmailAddress>
                  <ContactTypeText>sendItineraryTo</ContactTypeText>
                  <EmailAddressText>email@domain.com</EmailAddressText>
           </EmailAddress>
           <Individual>
                  <GivenName>JOHN</GivenName>
                  <IndividualID>IN2</IndividualID>
                  <Surname>DOE</Surname>
                  <TitleName>MR</TitleName>
           </Individual>
           <Phone>
                  <PhoneNumber>(+49)12312312</PhoneNumber>
           </Phone>
           <PostalAddress>
                  <CityName>CITY</CityName>
                  <CountryCode>DE</CountryCode>
                  <PostalCode>12345</PostalCode>
                  <StreetText>STREET 1</StreetText>
           </PostalAddress>
        </ContactInfo>
</ContactInfoList>

Contact data without parameter

<ContactInfoList>
        <ContactInfo>
           <ContactInfoID>C1</ContactInfoID>
           <ContactPurposeText>Primary</ContactPurposeText>
           <EmailAddress>
                  <EmailAddressText>email@domain.com</EmailAddressText>
           </EmailAddress>
           <Individual>
                  <GivenName>JOHN</GivenName>
                  <IndividualID>IN2</IndividualID>
                  <Surname>DOE</Surname>
                  <TitleName>MR</TitleName>
           </Individual>
           <Phone>
                  <PhoneNumber>(+49)12312312</PhoneNumber>
           </Phone>
           <PostalAddress>
                  <CityName>CITY</CityName>
                  <CountryCode>DE</CountryCode>
                  <PostalCode>12345</PostalCode>
                  <StreetText>STREET 1</StreetText>
           </PostalAddress>
        </ContactInfo>
</ContactInfoList>

If a booking confirmation is to be send AND the language of the booking confirmation should also be defined (and not be taken from the user management profile), the entity “PayloadAttributes” including the attribute “AltLangID” must be specified as well in the OrderCreate request after the “Party” information. Currently the SunExpress systems supports the following languages: DE, TR, EN, FR, IT

Request sample including language designator

<IATA_OrderCreateRQ xmlns="http://www.iata.org/IATA/2015/00/2019.2/IATA_OrderCreateRQ">
        <Party>
                <Sender>
                        <EnabledSystem>
                                <SystemID>PRIBAS</SystemID>
                        </EnabledSystem>
                </Sender>
        </Party>
        <PayloadAttributes>
                <AltLangID>TR</AltLangID>
                <PrimaryLangID>DE</PrimaryLangID>
        </PayloadAttributes>
        <POS>
                <AgentDutyText>2</AgentDutyText>
        </POS>