url: http://testws.galileo.com/GWSSample/TravelCodesTranslatorClient/testpage.aspx
Notes:
standard codes are used in the travel trade through out the world.
For eg., We use City codes
DEL for Delhi or BLR for Bangalore or Airline codes 9W for Jet Airways.
Video:
url: https://support.travelport.com/webhelp/GWS/GWS.htm
Notes:
url: http://testws.galileo.com/GWSSample/XMLSelectClient/testpage.aspx
Notes:
url: https://apac.copy-webservices.travelport.com/B2BGateway/service/XMLSelect?WSDL
Notes:
url: https://developer.travelport.com/
Notes:
url: https://support.travelport.com/webhelp/uapi/uAPI.htm
Notes:
Notes:
url: https://developer.travelport.com/euf/assets/developer-network/downloads/ReferenceData.zip
Notes:
url: https://github.com/Travelport
Notes:
url: https://demo.travelportuniversalapi.com/
Notes:
[Click on the link to go through the Presentation.]
Presentation on Adhvan
[Click on the link for document.]
Document on PAT
For full advisory details, please visit: Advisory Link
Previously, when the same penalty information (change and cancel) was returned for multiple PTCs, JSON API Search provided one penalty object per passenger type. With this enhancement, users will now see only one penalty object for multiple PTCs (ADT, CNN, INF) if the penalty information is the same for all passengers in the search response.
There is no model version change.
No new query parameters are introduced in the JSON Search v11 request.
When the same Change / Cancel penalties are returned for multiple PTCs, JSON API Search will now return a single Penalty object and reference all applicable PTCs in Penalties.PassengerTypeCodes. This enhancement mirrors the existing improvement in the JSON API Price response.
Before: Request with 1 ADT and 1 CNN (no age). Same penalties are returned for both PTCs, but JSON API Search returns 2 Penalty objects with PassengerTypeCodes ADT.
Now: Only 1 Penalty object is returned with PassengerTypeCodes ADT.
Before: Request with 1 ADT, 1 CNN (age 5), and 1 INF (age 1). Same penalties returned for all, but 3 separate Penalty objects were shown.
Now: Only 1 Penalty object is returned with PassengerTypeCodes ADT, CNN, INF.
For full advisory details, please visit: Advisory Link
Users can now select property types from an enumerated list to include in the response.
First notification.
Developers.
Travelport+ (1G)
July 28, 2025 – 7:00 AM EDT
Hotel JSON SearchComplete combines Search, Details, and Availability into one request/response sequence. The SearchComplete by Location functionality allows users several options for determining the list of properties returned in the response.
Object / Element | Description and Snippet | Required / Optional |
---|---|---|
propertyFilter | Top-level object for hotel search data. Filters restrict which properties are returned in the response. | Required |
maxWaitTime | Numeric. Maximum wait time (milliseconds) for supplier response. Default: 10000. Suppliers not responding within the time limit will return a warning. | Optional |
location | Object defining the type of search to conduct. | Optional |
type | String. Defines type of location search: airportIATACode , cityIATACode , coordinates , address . |
Required if using location object |
details | Object containing details related to location search. | Required if using location object |
iataCode | 3-character code for city or airport search. Used with airportIATACode and cityIATACode . |
Optional |
latitude | Latitude value of geocode. Used with search type coordinates . |
Optional |
longitude | Longitude value of geocode. Used with search type coordinates . |
Optional |
countryCode | Two-character ISO 3166 code for a country. Used with search type address . |
Optional |
stateProvince | Two-character state or province code. Used with search type address . |
Optional |
cityName | Fully spelled-out city name. Used with search type address . |
Optional |
radius | Object defining the search radius for property search. | Required |
value | Numeric value for radius length. | Required |
unit | Two-character designation: mile (mi ) or kilometer (km ). |
Required |
For full advisory details, please visit: Advisory Link
Previously, the ModifyPrice section in the JSON API GDS Exchange workflow represented the netted financial impact by combining additional collection and residual amounts across base fare, taxes, and change fees. With this enhancement, two new sections are introduced to provide clear, separate values:
Travelport+ JSON Exchange API.
This enhancement offers customers a clearer view of both additional collection and residual refund amounts, improving compliance and reducing pricing errors.
Current JSON Exchange API pricing sections:
The ModifyPrice section currently nets all components (base, refundable tax, additional tax, and change fee), which may conflict with BSP and carrier-specific rules. The enhancement introduces:
Market | Pricing Logic Updates |
---|---|
BSP Markets |
|
ARC Markets |
|
Carrier/Region Specific | Some carriers (e.g., Aegean) prohibit netting of residual tax and add-collect base |
These changes ensure the Exchange API adheres to industry standards and carrier-specific requirements, reducing pricing discrepancies and commit failures. Developers are advised to update workflows and logic that rely solely on the ModifyPrice section.
For full advisory details, please visit: Advisory Link
With this implementation, customers can control MCT (Minimum Connecting Time) warnings and choose whether to accept or create the booking. When an MCT warning is returned by the host, the booking is not immediately created via JSON API (unlike current behavior).
Travelport + GDS. Does not include NDC.
Customers gain explicit control over accepting or rejecting bookings and schedule changes that trigger an MCT warning.
Yes
Restful API Microservices v11.25 and above: ReservationQueryCommitReservation
and schedule change flows.
Previously, when a Minimum Connecting Time warning was received during booking creation or upon accepting a schedule change, a double end transaction was sent to the back end and customers had no opportunity to accept/reject. This update introduces two new indicators inside ReservationQueryCommitReservation
:
enableTwoStepCommitInd
overrideMCTInd
These provide the ability to either follow the current behavior (create booking immediately) or to perform a two-step commit where the booking is held (cached) until the customer explicitly overrides the MCT warning.
If you want the system to create the booking even when an MCT warning is returned, pass both identifiers as true
. The booking is created, the MCT warning is included in the final payload, and the session is closed.
Example A request
{
"ReservationQueryCommitReservation": {
"scheduleChangeAcceptedInd": false,
"enableTwoStepCommitInd": true,
"overrideMCTInd": true
}
}
Example A error/response (host message)
CONNECTION DURATION IS LESS THAN MINIMUM CONNECTING TIME
To control acceptance, use enableTwoStepCommitInd=true
and set overrideMCTInd
to false
(or omit it) in the first commit. The booking is not created but is saved in cache, and a warning is returned. The client must send a second commit with overrideMCTInd=true
to create the booking. If the second commit is not sent, the session remains open for 15 minutes (unless ignored).
Example B — First Commit (warning, booking NOT created)
{
"ReservationQueryCommitReservation": {
"scheduleChangeAcceptedInd": false,
"enableTwoStepCommitInd": true,
"overrideMCTInd": false
}
}
Example B — Second Commit (override and create booking)
{
"ReservationQueryCommitReservation": {
"scheduleChangeAcceptedInd": false,
"enableTwoStepCommitInd": true,
"overrideMCTInd": true
}
}
Example B responses
First Commit Response:
CONNECTION DURATION SHOULD NOT BE LESS THAN MINIMUM CONNECTING TIME. OVERRIDE MCT OR REBOOK
Second Commit Response:
CONNECTION DURATION IS LESS THAN MINIMUM CONNECTING TIME – Booking Created
scheduleChangeAcceptedInd
is true
, the same two-step behavior applies.We’re excited to unveil the next-generation Mini Fare Rule (MFR) system—powered by advanced AI/ML and Large Language Model (LLM) technologies. This upgrade enhances the way fare rules (CAT31, CAT33, CAT16) are interpreted, offering greater accuracy, transparency, and automation.
Service | Environment | Legacy URL | LLM URL |
---|---|---|---|
MFR | PreProd | https://preprod.itq.in/MiniRule/MiniService.svc/Service1.svc | https://minirulellmstg.itq.in/MiniService.svc/Service1.svc |
MFR | Prod | https://minirules.itq.in/MiniService.svc/Service1.svc | https://llmmfr.itq.in/MiniService.svc/Service1.svc |
VR3 | PreProd | https://preprod.itq.in/VR3ServiceUat/Service1.svc/Refund | https://preprod.itq.in/VR3coreUAT/service1.svc/Refund |
VR3 | Prod | https://vr3service.itq.in/Production/Service1.svc/Refund | https://llmvr3.itq.in/service1.svc/Refund |
Note: The legacy Mini Fare Rule system will soon be deprecated. Please integrate the new LLM-based endpoints, especially focusing on Time Window-based penalties and TraceID support to ensure uninterrupted service.
If you need any assistance during integration, we are here to help!
Effective Date: August 28, 2025 – 5:00 PM EDT
Travelport System: Travelport+ (1G)
Reason for Issue: First notification
With this implementation, customers gain control over the Minimum Connecting Time (MCT) warning behavior when using the Restful API. When an MCT warning is returned by the host, bookings will no longer be auto-created via JSON API. Instead, customers can choose whether to proceed with or reject the reservation.
ReservationQueryCommitReservation
Schedule Changes
Previously, when an MCT warning was triggered during booking or schedule change, a double end transaction was silently processed, without customer control.
With this change, two new indicators are introduced under ReservationQueryCommitReservation
:
enableTwoStepCommitInd
overrideMCTInd
These fields give customers control to accept or reject the booking based on MCT warnings.
If you want to preserve the current JSON behavior (i.e., allow booking despite MCT warning), set both indicators to true
.
{
"ReservationQueryCommitReservation": {
"scheduleChangeAcceptedInd": false,
"enableTwoStepCommitInd": true,
"overrideMCTInd": true
}
}
CONNECTION DURATION IS LESS THAN MINIMUM CONNECTING TIME
Effective Date: June 19, 2025 – 6:00 AM EDT
Travelport System: Travelport+ (1G)
Reason for Issue: First notification
Travelport Hotel JSON messaging returns property-specific content to users, including ratings from trusted sources. Previously, ratings were provided by NorthStar Travel Management and AAA. With this update, two new rating providers have been added:
Ratings are only returned when available. Despite support for four providers, some properties may not display any ratings. Booking.com ratings will appear only for authorized users. Supported message types include:
Displaying ratings helps travelers compare properties more effectively and make informed booking decisions.
No schema changes are introduced with this update.
The provider
field within the Rating (V11) or ratings (V12) array may now include any of the following:
NTM
– NorthStar Travel ManagementAAA
– AAABooking
– Booking.comGIATA
– GIATA GmbH
Whether to display these ratings is up to the user. If your application filters or formats based on the provider
value, make sure to support the new values below.
Provider Value | Rating Source |
---|---|
Booking |
Booking.com |
GIATA |
GIATA GmbH |
Effective Date: June 26, 2025 – 5:59 PM EDT
Travelport System: Travelport Galileo (1G), Travelport+ (1G)
Reason for Issue: First notification
This advisory summarizes key enhancements and defect fixes introduced in Travelport Universal API Release 25.3.1.
No schema changes were introduced with this release.
Segment Status Change for NDC Bookings (Provider: Air, Universal.xsd | System: 1G)
Universal API (SOAP XML Services) now supports retrieval of NDC bookings with segments in ZK
and HK
status.
When NDC segments are present, the following warning will appear:
<common_v53_0:ResponseMessage Code="101018" Type="Warning">
PNR has NDC segment(s) QF|403,QF|402,QF|401,QF|402. NDC segment(s) cannot be modified or cancelled using UAPI.
</common_v53_0:ResponseMessage>
Attempting to modify such a PNR through Universal API will return an error:
<faultstring>
PNR has NDC segment(s) AA|2364. NDC segment(s) cannot be modified or cancelled using UAPI.
</faultstring>
Users must contact their Travelport Account Representative to opt-in for NDC segment support. Refer to advisory DA-1065 for further details.
Effective Date: June 24, 2025 – 2:00 PM EDT
Travelport System: Travelport+ (1G)
Reason for Issue: First notification
A multi-phase update to JSON API error handling was released in June 2024 across all JSON APIs. This update ensures consistent error messaging across GDS and NDC content. The new and revised errors apply to all JSON Air APIs.
This advisory informs developers of the latest error codes. The complete list can be viewed on the official support site.
Developers now receive uniform and clearly categorized error responses, helping streamline integration and error resolution workflows.
All Travelport JSON APIs.
Code | Message | Status | Category |
---|---|---|---|
2529 | NDC AIRLINE UNABLE TO PROCESS. RETRY | 200 | Temporary |
4460 | TRAVELER EMAIL CANNOT MATCH TRAVEL AGENCY EMAIL | 200 | Validation |
4467 | EXTENDED PAYMENT CANNOT BE APPLIED TO MULTIPLE TRAVELERS | 200 | Validation |
Code | Message | Status | Category |
---|---|---|---|
2527 | NDC AIRLINE UNABLE TO PROCESS. RESTART | 200 | Process |
4126 | REFUNDED DOCUMENT CANNOT BE VOIDED | 200 | Validation |
4455 | RESERVATION IDENTIFIER CANNOT BE BLANK OR NULL. PROVIDE VALID IDENTIFIER | 400 | Validation |
Advisory Number: DA-1070
Effective Date: May 29, 2025 7pm EDT
High Level Description: Release notes and defect fixes for Release 25.2.3 of Travelport Universal API.
Impact Summary: All customers on all schema versions will benefit from the defect fixes. Please note that only customers who upgrade to the latest schema versions may benefit from enhancements. The expected risk is low.
Overview: Features and defect fixes for Release 25.2.3 of Travelport Universal API.
Schema Changes: No schema changes were made related to the new features or defect fixes.
Release Notes: See the Universal API Help System Release 25.2 Release Notes for further information.
Feature: Segment Status Change for NDC Bookings Retrieved via SOAP XML API Services
Description: On June 26, 2025, Universal API (SOAP XML API Services) will be able to retrieve NDC bookings with segments containing both ZK and HK status.Users who want to retrieve NDC bookings with ZK or HK status returned on NDC segments should reach out to their Travelport Account Representative and opt-in for NDC bookings. See DA-1065 for more details.
Feature: IndiGo Stretch Business Class fares are now accessible.
Description: The delivery is in two phases:
See DA-1067 for further information.
Advisory Number: PA-4517
High Level Description: Travelport+ users will see the NDC air segment status in their Booking as HK. This is a change from the current ZK to new HK status in Travelport+ Passive Booking File.
Impact Summary: No new entries, though this change may affect agency workflows when HK is returned vs ZK. An AAT update is required to allow NDC ZK segments to display as HK.
Overview: When Opted-IN, Travelport+ users will see the NDC air segment status in their Booking as HK. This change from the current ZK to HK status in the Travelport+ Passive Booking File aligns our system more closely with industry standards and improves overall booking accuracy. Agencies can opt in by contacting their Travelport Account Manager or Customer Success Manager.
Customer Benefit: The ZK to HK transition, for NDC Segments, serves as a crucial foundation for our upcoming improvements around Order Change Notification (OCN) related to flight disruption management system and other notifications from the Airline(s) to keep Orders synchronized between Travelport+ and the Airline(s) system. This update prepares our platform for the implementation of airline reply/advice/status codes handling, such as but not limited to UN (Unable-flight doesn't operate) and TK (Confirming/Holds confirmed-Advise passenger of a new scheduled times/details), enhancing our ability to manage flight disruptions effectively. A separate advisory will be released at a later date describing all the improvements around this area. With the implementation of HK status, we anticipate a smoother and more efficient hand-off to back office operations. This improvement will streamline workflows and reduce potential errors in booking management.
This change will benefit users of both Smartpoint Desktop and Smartpoint Cloud. Users will need to be on Smartpoint Desktop v11.7 or higher in order to be able to use the N indicator to open the Flight Search Plugin to service the booking. This change is available on v11.7, released on the 24th April and all future versions.
Advisory Number: PA-4523
Effective Date: May 01, 2025 5:45pm EDT
High Level Description: Travelport+ customers can now book IndiGo Stretch Business Class Fares.
Impact Summary: Travelport+ customers can now book IndiGo Stretch Business Class Fares. The delivery will be in two phases:
IndiGo Stretch is IndiGo’s new business class service offering wider seats, priority check-in, complimentary meals and drinks.
IndiGo Stretch fares are also combinable with IndiGo Corporate and Super 6E fare types; however, this initial delivery will not allow such combinations.
Note: Stretch combined with Stretch+ will be enabled with the Phase 2 delivery.
A planned subsequent delivery for May 29, 2025 will include fare type combinations. The included ancillary services are outlined below:
Service | Stretch (C) | Stretch Plus (E) |
---|---|---|
Seat Selection | Complimentary | Complimentary |
Meal & Beverage | Complimentary – Standard veg meal box with beverage | Complimentary – Standard veg meal box with beverage |
Check-in Baggage | 30Kg (2 pcs) | 40Kg (2 pcs) |
Hand Baggage | 12Kg (1 pc) | 12Kg (1 pc) |
Fast Forward | Yes | Yes |
Advisory Number: | PA-4532 |
Version: | 1 |
Effective Date: | June 02, 2025 9am EDT |
High Level Description: | This advisory details the initial launch of Cathay Pacific (CX) NDC content. |
Impact Summary: | NDC content is booked through Travelport+ in Smartpoint or via API RESTful/JSON services. |
NDC content from the carriers listed will be available in the countries listed from the dates indicated below.
Carrier(s) | From | Accepted Form of Payment | Countries / Timeline |
---|---|---|---|
Cathay Pacific (CX) | June 02, 2025 | Cash and Credit Card |
Thailand Vietnam (Q3 2025) Singapore (Jul) France, Switzerland (Jul) Sri Lanka (Q3) India (Mid-Aug) Saudi + UAE (Oct, Q4 2025) |
Please note that NDC content is released on a carrier and country basis in collaboration with the carriers. See the appendix for full details.
Look out for further advisories as we roll out NDC more widely.
Future NDC deals will offer better pricing, personalized offers, and bundled ancillaries. Airlines can tailor content based on traveler data, such as loyalty status or corporate IDs.
For more details, visit the full advisory here.
Effective July 21, 2025, JSON API Price will no longer return the quantity
field in BaggageItem
when baggage is measured in kilograms. This change applies to GDS content and aligns with JSON API Search v11.
Impacted: Reference and Full Payloads
Schema: No model version changes
Details: Read Full Advisory
Effective May 12, 2025, OTP and password reset emails will be sent from a new address: noreply@identity.travelport.net
, replacing noreplyauth@travelport.com
.
Action Required: Customers must allowlist identity.travelport.net
and travelport.net
to ensure email delivery.
Travelport has updated OTP notifications and shared the info with MyTravelport users on April 24. Operators are asked to proactively inform customers especially IT teams about this change to avoid disruptions.
Communication templates are available via Seismic and the Operator Brand Hub.
Effective: Changes made after April 26 that move travel to June 1 or later must follow the new RBD structure based on updated Oman Air fare rules.
Impacts:
Action: Please inform relevant users to review the policy and proceed with caution for affected bookings, as automated tools may not reflect accurate calculations.
Refer to the official Oman Air trade notification shared by the airline or contact your Travelport Operator Success Manager for support.
Advisory: DA-1064 | Version: 1
Effective: July 21, 2025, 3pm EDT
Description: JSON API Price will no longer return the quantity
field when baggage allowance is in kilograms for GDS content.
Impact: Developers must update code if currently validating quantity
for KG-based baggage.
Pre-Prod Load: June 17, 2025, 3pm EDT
Applies to: Reference & Full Payload | Travelport+ (1G)
Benefit: Cleaner baggage data output for KG allowances.
Note: No schema version changes required. Affects only BaggageItem
in GDS path.
More Info: Travelport Advisory
Effective: May 12, 2025
Whats Happening?
OTP (One-Time Passcode) and password reset emails will now come from noreply@identity.travelport.net
instead of noreplyauth@travelport.com
.
Reminder: OTP is a temporary code used for verifying identity as part of Multi-Factor Authentication (MFA).
Action Required: Customers must allowlist identity.travelport.net
and travelport.net
domains to ensure uninterrupted email delivery.
Please share this information with your customers, especially their IT teams. Allowlisting both domains is critical to avoid disruptions.
A Seismic email template is available for your use and also on the Operator Brand Hub. Use it to inform customers using impacted products as soon as possible.
Thank you for your continued support. For questions, please contact your Travelport Operator Success Manager.
Action: Awareness for Operator Helpdesks, Training Teams, and Connected Customers
By: All Travelport Operators
Deadline: On or before April 25, 2025
Purpose: Oman Air joins Oneworld Alliance Fare Class Re-Alignment (FCR) Notification
Airline: Oman Air
Supplier Code: WY
Please review the official notification received from Oman Air and share with customers where appropriate. Oman Air should also be notifying trade partners directly.
Important: Ensure users are aware of this policy update and proceed carefully with affected bookings, as automation may not calculate expected values.
For questions, contact your Travelport Operator Success Manager.
With this enhancement, JSON API Search and Next Leg Search for GDS content only and Integrated Search (GDS plus NDC content) return offers that have multi-cities for which one or more are stopovers.
“Price”
object is not returned.“Surcharges”
and “Commission”
objects are returned in the “BestCombinablePrice”
object, as the “Price”
object is no longer returned. The surcharges and commission amounts are for the entire journey.“CombinabilityCode”
will return “jc”
with a number (starting with “1”
) for offers that have multi-cities where one or more have stopovers. For example “jc1”
, “jc2”
, etc.Note: This capability does not affect “JSON AirPrice”
, “AirReservation”
, and “AirTicketing”
.
JSON API Search and Next Leg Search v11 customers can request the activation of this capability in pre-production and production system(s) anytime. If you would like to activate this change prior to March 2025, please request this by emailing AirBendersSupport@Travelport.com and copy your Travelport representative indicating the following:
“JSON Search v11 Cross Over 1 Origin and Destination (O&D)”
The activation can take up to one week.
We recommend activating this in the pre-production environment first, then testing the capability and identifying the changes you need to make. After this, you can request the activation in production.
“JSON API Search”
and “Next Leg Search”
for GDS content only“Integrated Search”
(GDS plus NDC content)“Price”
object from the NDC content“Flight Specific Search v11”
(reference-based and full payload)For more details, please visit: Travelport Advisory
A multi-phase update to JSON API error handling was released in June 2024 across all JSON APIs. Consistent error messages are now returned for all content, including GDS and NDC, across all JSON Air APIs. The updated Error Message List can be viewed at the Error Message support site.
This Developer Advisory is to inform of new and revised error messages supported by JSON APIs.
Consistent error messages are returned for all content, including GDS and NDC, across all JSON Air APIs.
All Travelport JSON APIs.
The following tables list the new and revised error messages returned in the JSON APIs for all objects in Error/Result except SourceID, which may return API, a supplier code, or the GDS code 1G.
For more details, please visit: Travelport Advisory
Supplier Code: VF
It is planned to implement the following AIR product(s) with carrier AJET on Wednesday, 19th March.
The following fees are included in this Electronic Miscellaneous Document release.
AJet, formerly branded as AnadoluJet until 31 March 2024, is a Turkish low-cost airline operating domestic flights as well as international flights to Northern Cyprus, Western Europe, and Western Asia from its base at Sabiha Gokcen International Airport.
Transavia (both TO and HV flight prefix) is migrating to Navitaire Newskies digital API. To support their upgrade, Travelport will sync up to Navitaire Newskies API with Transavia. There will be no production outage, and customers can continue to make bookings.
Transavia API content with some changes in functionality as outlined in this advisory.
For more details, please visit: Travelport Advisory
For Point of Sale Romania, the default currency is EUR and acceptable forms of payment are:
As an alternative, ROM currency is also supported with payment options:
The best deals in terms of price, offer attributes, and personalization are expected via NDC in the future.
For more details, ask your Travelport Account Manager for a demonstration of the new Finnair (AY) NDC content today.
For more details, please visit: Travelport Advisory
As of 28 January 2025, LHG’s NDC channels will also include Discover Airlines (4Y). This is in addition to the previously launched airlines, Lufthansa (LH), Austrian (OS), Swiss (LX), SN Brussels (SN), and Air Dolomiti (EN).
For customers with existing LHG Base Offers or Smart Offers activated on Travelport+:
Travelport will not mandate retrospective onboarding for all customers who already have an LHG NDC channel activated. Instead, Operators only need to act if their customer requests the airline.
Once such a request is received, the following actions should be taken, starting from 30 January 2025:
For customers activating LHG Base Offers or Smart Offers on Travelport+ for the first time:
All onboarding processes have been updated to reflect the inclusion of Discover Airlines. There are now six airline selection boxes in MyTravelport.
With this enhancement, JSON API Search and Next Leg Search for GDS content only and Integrated Search (GDS plus NDC content) return offers that have multi-cities for which one or more are stopovers.
Note: This capability does not affect JSON AirPrice, AirReservation, and AirTicketing.
JSON API Search and Next Leg Search v11 customers can request the activation of this capability in pre-production and production system(s) anytime.
If you would like to activate this change prior to March 2025, please request this by emailing AirBendersSupport@Travelport.com and copy your Travelport representative indicating the following:
The activation can take up to one week.
We recommend activating this in the pre-production environment first, then testing the capability and identifying the changes needed before requesting activation in production.
There is no model version change.
For more details, visit the official support page: Travelport Support Page
Effective Date: December 16, 2024 12pm EST
High Level Description: New and revised Error Messages for JSON API.
Impact Summary: New or revised messages are available for consumers of JSON APIs.
A multi-phase update to JSON API error handling was released in June 2024 across all JSON APIs. Consistent error messages are now returned for all content, including GDS and NDC, across all JSON Air APIs. The updated Error Message List can be viewed at Error Message support site.
This Developer Advisory is to inform of new and revised error messages supported by JSON APIs.
Consistent error messages are returned for all content, including GDS and NDC, across all JSON Air APIs.
All Travelport JSON APIs.
The following tables list the new and revised error messages returned in the JSON APIs for all objects in Error/Result — except SourceID, which may return API, a supplier code, or the GDS code 1G.
Source Code | New Message | Status Code | Category |
---|---|---|---|
1578 | CUSTOMER LOYALTY DOES NOT EXIST | 200 | VALIDATION |
1578 | ONLY ONE MANUAL FARE ADJUSTMENT CAN BE PROCESSED FOR THE SAME PASSENGER TYPE CODE | 200 | VALIDATION |
1580 | MANUAL FARE ADJUSTMENT MUST CONTAIN VALID AMOUNT OR PERCENT | 200 | VALIDATION |
3514 | VALIDATING CARRIER CANNOT BE FOUND | 200 | VALIDATION |
4413 | TRAVELER UPDATABLE ITEMS CANNOT BE PROCESSED FOR THIS AIRLINE | 200 | TERMINAL |
4414 | OFFER CANNOT BE PRICED. CONTACT AIRLINE DIRECTLY | 200 | TERMINAL |
4415 | RESHOP CANNOT BE PROCESSED FOR THIS RESERVATION. CONTACT AIRLINE DIRECTLY | 200 | TERMINAL |
20308 | OFFER ID CANNOT BE FOUND IN REFERENCED RESERVATION. PROCESS EXCHANGE MANUALLY | 200 | TERMINAL |
Source Code | New Message | Status Code | Category |
---|---|---|---|
3039 | VALIDATING CARRIER MUST BE VALID | 200 | VALIDATION |
3054 | VALIDATING CARRIER IS NOT ALLOWED | 200 | VALIDATION |
3077 | VALIDATING CARRIER IS NOT AUTHORIZED FOR AGENCY | 200 | VALIDATION |
4391 | SPECIAL SERVICE REQUEST CANNOT CONTAIN FREE TEXT | 200 | VALIDATION |
4395 | SSR CODE DOES NOT EXIST FOR SPECIAL SERVICE REQUEST | 200 | VALIDATION |
4953 | CUSTOMER LOYALTY NAME OR NUMBER IS INVALID | 200 | VALIDATION |
8044 | CUSTOMER LOYALTY NUMBER MUST BE VALID | 200 | VALIDATION |
20016 | ORIGINAL FARE AND RULE DATA DOES NOT ALLOW CHANGES | 200 | TERMINAL |
Effective Date: February 27, 2025 3pm EST
High Level Description: With this enhancement, JSON API journey-based Search for GDS content returns offers that have multi-cities for which one or more are stopovers.
Impact Summary: Changes to the JSON API journey-based Search response for all GDS offers. JSON API Search users that validate the "Price" object need to make changes to validate the "Best Combinable Price" object. This capability does not affect JSON AirPrice, AirReservation, and AirTicketing.
With this enhancement, JSON API journey-based Search for GDS content returns offers that have multi-cities for which one or more are stopovers.
Note: This capability does not affect JSON AirPrice, AirReservation, and AirTicketing.
JSON API Journey Based Search v11 GDS customers can request the activation of this capability in pre-production and production system(s) anytime. If you would like to activate this change prior to February 2025, please request this by emailing AirBendersSupport@Travelport.com and copy your Travelport representative indicating the following:
The activation can take up to one week. We recommend activating this in the pre-production environment first, testing the capability, and identifying the changes needed before requesting activation in production.
JSON API journey-based Search v11 with and without upsells for GDS content only.
Under Development:
Note: Once this work is completed, the Price Object will not be returned. An updated version of this Developer Advisory will be sent when this work is completed and released in the pre-production environment.
Under Review:
Return the lowest fares/Offers for itineraries that have multi-cities for which one or more are stopovers.
Return the lowest fares/Offers for itineraries that have side trips.
There is no model version change.
There are no new query parameters in the JSON Search v11 request for this.
With this enhancement, JSON API journey-based Search for GDS content returns offers that have multi-cities for which one or more are stopovers.
More information and examples of JSON API Search v11 Cross Origin and Destination request and response can be found in the Air Shopping Guide in the section “Price Details Moved to BestCombinablePrice”.
For additional details, please refer to the Developer Advisory.
Travelport is happy to launch an initial test phase of NDC airline activation automation. With immediate effect, this automation will provide touchless activation of NDC approvals for both British Airways and Iberia, and will be expanded to Finnair when they launch in the new year. Other airlines will follow in Q1 assuming the testing is successful, which will significantly reduce the activation impact on both Travelport and Operators.
This means that for British Airways and Iberia approvals you will no longer receive Cases in MyTravelport, and you will no longer need to manually tick the airline’s box in MyTravelport NDC Settings for your customers that will all be automated for you, significantly reducing friction and timescales. The only time you would need to take action is if you do not want the customer to access that content due to a commercial reason. In these cases, you can simply untick the airline’s box in MyTravelport NDC Settings.
This automation is an excellent example of how our approach to NDC is evolving. Each step being taken to help us move more smoothly and quickly forward. Should you have any queries, please do not hesitate to get in touch.
For more details, please refer to the Your PDF Document Title.
Travelport is happy to launch an initial test phase of NDC airline activation automation. With immediate effect, this automation will provide touchless activation of NDC approvals for both British Airways and Iberia, and will be expanded to Finnair when they launch in the new year. Other airlines will follow in Q1 assuming the testing is successful, which will significantly reduce the activation impact on both Travelport and Operators.
This means that for British Airways and Iberia approvals – you will no longer receive Cases in MyTravelport, and you will no longer need to manually tick the airline’s box in MyTravelport NDC Settings for your customers – that will all be automated for you, significantly reducing friction and timescales. The only time you would need to take action is if you do not want the customer to access that content due to a commercial reason. In these cases, you can simply untick the airline’s box in MyTravelport NDC Settings.
This automation is an excellent example of how our approach to NDC is evolving. Each step being taken to help us move more smoothly and quickly forward. Should you have any queries, please do not hesitate to get in touch.
For more details, please refer to the Your PDF Document Title.
With this enhancement, JSON API journey-based Search for GDS content returns offers that have multi-cities for which one or more are stopovers.
Note: This capability does not affect JSON AirPrice, AirReservation, and AirTicketing.
JSON API Journey Based Search v11 GDS customers can request the activation of this capability in pre-production and production systems anytime. If you would like to activate this change prior to February 2025, please request this by emailing AirBendersSupport@Travelport.com and copy your Travelport representative indicating the following:
The activation can take up to one week.
We recommend activating this in the pre-production environment first, then testing the capability and identifying the changes you need to make. Afterward, you can request the activation in production.
For more details, visit the following Travelport advisory page.
Turkish Airlines
Supplier Code –TK
Turkish Airlines have announced that MEDA requests will be automated as of November 28, 2024.
The aim is to evaluate MEDA requests quickly, continuously, and automatically based on aircraft type, flight duration, and oxygen cylinder limits.
As part of the automation of the process, a mandatory format for oxygen cylinder entries has been introduced. The old and new formats of the entries are given in the table below:
OLD ENTRY FORMAT | NEW ENTRY FORMAT | EXPLANATION |
---|---|---|
SSR MEDA NN1 OXYGEN TUBE 4LT PER MIN | SSR MEDA NN1 AOXY OXYGEN TUBE 4LT/MIN | For oxygen cylinder requests, AOXY is mandatory. The oxygen cylinder Litre per minute varies and must be between 2LT to 8LT. |
SSR MEDA NN1 PSGR OWN MACHINE/TUBE | SSR MEDA NN1 POXY PSGR OWN MACHINE/TUBE | The passenger's own portable respirator request must be requested with POXY entry, and the brand of the device must be specified. Free Format: PSGR OWN MACHINE/TUBE. |
Note:
The MyTravelport knowledge base will be shortly updated - KB0032255 regarding this change.
High Level Description:
Provides new functionality in Travelport+ desktop to calculate the U.S. Transportation Tax (7.5%) and return the tax and fare for a variable input base or total amount in a single entry. This capability is similar to that currently available in Travelport Apollo and Travelport Worldspan.
Provides new functionality in Travelport+ desktop to calculate the U.S. Transportation Tax (7.5%) and return the tax and fare for a variable input base or total amount in a single entry. This capability is similar to that currently available in Travelport Apollo and Travelport Worldspan.
This calculates only the 7.5% U.S. Transportation tax and does not include Alaska/Hawaii proration tax calculation.
The new functionality will convert BASE fare to Tax/Total using 7.5% (XXnnnnB) or TOTAL fare to Tax/Base using 7.5% (XXnnnnT).
Provides an efficient way to return basic information about U.S. Transportation Tax, and either Total or Base fare for a variable input amount, with a single entry.
Entry: XXnnnnB
Where:
XX = initiates calculation function
nnnn = variable input amount
B represents ‘Base fare‘
This will return the U.S. Transportation tax and total for a variable input BASE amount (i.e. XX200.00B, or XX200B). Decimal is optional.
Entry: XXnnnnT
Where:
XX = initiates calculation function
nnnn = variable input amount
T represents‘Total fare‘
This will return the base and U.S. Transportation tax for a variable input TOTAL amount (i.e. XX200.00T or XX200T). Decimal is optional.
Entry | US TAX | TOTAL |
---|---|---|
XX868.26B | 65.12 | 933.38 |
Entry | BASE | US TAX |
---|---|---|
XX933.38T | 868.26 | 65.12 |
Term | Definition |
---|---|
1G | Travelport+ (Previously known as Travelport Galileo) |
Travelport+ | Previously known as Travelport Galileo (1G) |
For more details, please visit the Travelport Advisory page.
High Level Description:
This Advisory details the initial launch of Avianca (AV) NDC content. Version 02 and Version 03 provide updates regarding the launch of Avianca in additional countries – including the addition of applicable form of payment details.
NDC carrier content is consumed and booked through Travelport+ in Travelport Smartpoint, or via Travelport API RESTful/JSON services.
NDC content from the carriers listed will be available in the countries listed, from the dates indicated below.
Carrier(s) | From | Accepted Form of Payment | Countries |
---|---|---|---|
Avianca (AV) | April 11, 2024 | Credit Card and Cash | Africa |
Austria, Belgium, Colombia, Denmark, Finland, France, Germany, Greece, Israel, Italy, Latvia, Lithuania, Luxembourg, Monaco, Netherlands, Norway, Portugal, Spain, Sweden, Switzerland, United Kingdom | |||
Avianca (AV) | July 11, 2024 | Credit Card and Cash | Aruba, Australia, Brazil, Canada, Chile, Costa Rica, Curacao, Dominican Republic, El Salvador, Estonia, Guadeloupe, Guatemala, Honduras, Hong Kong, Japan, Korea (South), New Zealand, Nicaragua, Panama, Paraguay, Puerto Rico, Trinidad and Tobago, United States, Uruguay |
Mexico (Cash only) | |||
Avianca (AV) | November 11, 2024 | Credit Card and Cash | Argentina, Peru |
Avianca (AV) | November 11, 2024 | Credit Card only | Bolivia |
Avianca (AV) | November 11, 2024 | Cash only | Ecuador |
Note: NDC content is released on a carrier and country basis in collaboration with the carriers. Please refer to the ’Appendix – Current NDC Carrier and Country availability’ section of this Advisory for the current full details.
Look out for further advisories as we roll out NDC more widely.
The best deals in terms of price, offer attributes, and personalization are expected to be via NDC in the future. Airlines are using NDC to differentiate their content and, in some cases, provide a personalized experience for travelers such as:
This advisory is not intended to explain airline differentiation but may highlight any immediate benefits for agencies.
If you are already on Travelport+ and accessing NDC content through Smartpoint, your Travelport Account Manager or Customer Success Manager will entitle any new airlines for you ’ so that you will see them listed in the Smartpoint carrier drop-down. This is usually completed in advance for your agency, however, if this has not been completed in advance, or you require PCCs to be restricted, please contact your Travelport representative.
Remember you may need to register with the airline first ’ before content begins to flow through. Details for the carrier(s) listed in this advisory are provided below.
High Level Description:
The Travelport Smartpoint 11.5 release offers various enhancements and defect fixes that benefit Travelport Smartpoint customers.
Voluntary changes in Assisted Ticketing. Hotel passive sell. Work areas. Fare shopping rebook. Trip Quote. Air Availability Search screen. Smartpanel Flight Shopping and Air Availability tabs. Restrict multiple airports (++RMA) in booked fare shopping responses.
The Travelport Smartpoint 11.5 release benefits from key enhancements to Assisted Ticketing, hotel passive sell, air availability search, Pseudo City Code (PCC) emulation, Trip Quote, and Smartpanel, as well as display of correct status for individual segments when a booked itinerary is rebooked and is partially successful.
Note: Each update applies to both Travelport+ (1G) and Travelport Apollo (1V) unless otherwise noted.
For more details, refer to the advisory: Travelport Smartpoint 11.5 Advisory.
Norwegian Air International
Supplier Code - D8
Effective Date: Thursday, 03 October
Implemented AIR Product: EMD Ancillary
EMD Ancillary
System(s) Involved: Travelport+ (1G)
Additional Details:
Ancillary | RFISC |
Classic Dish 1 | MAA |
Classic Dish 2 | MAB |
Classic Brunch | MBR |
Vegetarian Meal | MVL |
Vegan Meal | 0AN |
Diabetic Meal | 0AL |
Child Meal | 0HF |
Lactose-Free Meal | 0HN |
Gluten-Free Meal | 0HO |
Hamburger Meal | MHB |
Sri Lankan Airlines
It is planned to implement the following AIR products with Sri Lankan Airlines on Thursday, 10 October:
Journey Data
POC at Seamless Availability
Married Segments
Married to Journey Data
System(s):
Travelport+ (1G)
Sri Lankan Airlines Description:
SriLankan Airlines is the flag carrier of Sri Lanka and a member airline of the Oneworld airline alliance. It was launched in 1979 as Air Lanka following the termination of operations of the original Sri Lankan flag carrier Air Ceylon. Wikipedia
Alliance: Oneworld
Headquarters: Katunayake, Sri Lanka
Founded: 1979, Colombo, Sri Lanka
Destinations: 37
Employees: 5,440 (2023)
Fleet size: 24
Supplier Code – 5O
As planned, the following AIR product(s) were activated with ASL Airlines on Thursday, 3rd October 2024:
System(s):
The following fees will be included in this Electronic Miscellaneous Document release:
Ancillary | RFISC |
1st Additional Bag | 0CC |
Second Excess Bag | 0CD |
Carry 10kg 22lb up to 45LI 115LCM | 0MJ |
Sporting Equipment | 0F8 |
Bicycle | 0EC |
Pet in Hold | 0BS |
Pet in Cabin | 0BT |
Unaccompanied Minor | 0BH |
Chargeable Seat | 0B5 |
ASL Airlines France, formerly Europe Airpost, is an airline based in Paris-Charles de Gaulle and operates out of major French airports.
Supplier Code - GF
With immediate effect, the following AIR product(s) were activated with Gulf Air on Wednesday, 30th October 2024:
System(s):
The following fees will be included in this Electronic Miscellaneous Document release:
Ancillary | RFISC |
Excess Baggage Per Kilo | 0DG |
Prepaid Excess Bag Per Kilo | 0CU |
Excess Baggage Per 5KG | 0CW |
Prepaid Excess Bag Per 5KG GDS | 0CX |
Gulf Air is the flag carrier of Bahrain, which was founded in 1950. Headquartered in Muharraq, the airline operates scheduled flights to 61 destinations in 30 countries across Africa, Asia, and Europe. The airline's main hub is at Bahrain International Airport.
Overview
To better define hotel images, new values are added or reassigned to the type / typeCode elements: BUS/23, STUDIO/24, ATRC/25, and CONF/26.
Additionally, ten new attribute elements are added for each image, described below.
Customer Benefit
The customer will be able to choose an image that best matches the intent of the user by category, overall size, size ratio, and image quality.
Detail and Customer Examples
Hotel Image Category
Type Code Updates
URL: Advisory Link
Overview
Currently, the MIR type table (MMTD) doesn’t provide an option to control MIR transmission independently for MCO, TASF, and NDC document types. In the MIR type table MMTD with MPD set to Y, controls the issuance of MIRs for both Miscellaneous Charges Order (MCO) and the Service Fee document. I.e. Either it will be issued for both documents, or for none of them. Similarly, for a normalized NDC workflow, a MIR is automatically issued.
With this enhancement, Travelport+ users will have an option to control the MIR transmission for TASF, MCO, and NDC document types.
Customer Benefit
Reduced manual intervention and added flexibility to manage MIR transmission as per agency back office processes.
Detail and Customer Examples
MIR Type Table
The MIR type table allows an agency to choose the type of MIR wanted.
Enabling a field in the MIR type table allows MIRs to be generated when a certain transaction occurs.
The MIR type table is resident at the Pseudo City Code (PCC) level.
The existing identifier MPD will be provided with the two new options — apart from the existing Y/N indicator setting — as follows:
Additionally, the new identifier NDC has been introduced within the MIR type table to control the MIR transmission for NDC transactions. This will be controlled by Yes/No (Y/N) indicators settings. The default setting will be ‘Y’ (Yes) for the NDC identifier.
If the option “NDC” is set to ‘Y’ in the MMTD table, a MIR will be delivered for an NDC normalized workflow during issuance. Otherwise, when set as ‘N’, a MIR will not be generated during NDC document issuance.
URL: Advisory Link
A new release of Travelport Automated Exchanges for Smartpoint Desktop 3.1.0.52 will be available on Travelport Marketplace. This new release includes the following enhancements:
Automated exchange products will be returning the new numeric-alpha carrier-imposed fees in its exchange/reissue results. Customers must be prepared to accept the numeric-alpha fee types. Additionally, the Historical Notepad and XML response log generated by Travelport Automated Exchanges for Smartpoint Desktop will include a dollar sign ($) and hyphen (-) respectively (ex: 150.00$6H or 150.00-6H). The "Issue Now" and "Issue Later" buttons on the Automated Exchanges – Exchange Issue Confirmation have been replaced with a "Save" button if the configuration steps are followed. The Historical Notepad will display the message "USER HAS OPTED SAVE OPTION" when the "Save" option is used.
A new release of Travelport Automated Exchanges for Smartpoint Desktop 3.1.0.52 will be available on Travelport Marketplace.
This new 3.1.0.52 release includes the following enhancements:
URL: Advisory Link
A new release of Travelport Automated Exchanges for Smartpoint Desktop 3.1.0.52 will be available on Travelport Marketplace. This new release includes the following enhancements:
Overview
After approvals from IATA, ATPCO will provide new fee types 6H, 6I, 6J, and 6K in Carrier-Imposed Fees as applicable, when filed by airlines.
To assist each airline in further differentiating between miscellaneous airline-imposed fees, the industry is adopting these new Carrier Imposed Fees: 6H, 6I, 6J, and 6K. These new codes will provide each airline with greater transparency and flexibility in its fee management — in shopping, pricing, and downstream processes.
The new fee types will be available in addition to the current YQ and YR fee types and provide each airline with additional options for differentiating the miscellaneous airline-imposed fees they each individually choose to charge on an itinerary.
Version 02 Updates
(Please now see the latest Version 05 updates)
Version 03 Updates
(Please now see the latest Version 05 updates)
URL: Advisory Link
Travelport Automated Exchanges Processing for assessing the Value Added Tax for Change Fees
Overview
Currently during automated exchanges processing, the following taxes are determined based on internal tables: Value Added Tax, Goods and Services Tax, and Sales Tax for Change Fees. To ensure automated exchanges processing is using tax data that is consistent across the industry, an enhancement has been made to process the Taxable Unit Tag for Change Fees (Byte 33) instead.
Customer Benefit
Taxable Unit Tag for Change Fees (Byte 33) provides a data-driven solution covering the Value Added Tax, Goods and Services Tax, and Sales Tax application in a single data source.
Detail and Customer Examples
When using ATPCO Category 31 and Taxable Unit for Value Added Tax, the reservation Change Fees subject to Value Added Tax, Goods and Services Tax, and Sales Tax will be calculated and added to the Fee Amount filed in Category 31.
The Penalty filed in Category 31 is generally exclusive of Value Added Tax.
When a Value Added Tax, Goods and Services Tax, and Sales Tax is coded with “X” for Byte 33, automated exchange processing will apply the tax as a Tax on Change Fee.
FTAX-AU/UO
URL: Advisory Link
Overview
TPAirExchangeAncillaries is the Open API Specification (OAS) for Travelport JSON APIs.
This advisory is to inform of a change in data type from Boolean to String.
JSONAPI users will need to generate new model classes and update their application code with the new data class.
Scope
Impacts JSON API users when TPAirExchangeAncillaries OAS has been used for code generation.
Customer Benefit
Corrected data type from Boolean to String to comply with the JSON service response.
Schema Changes
TPAirExchangeAncillaries 11.18.2 OAS, data type change in the schemas listed in the Detailed Description section of this Advisory.
Impacted Services and Schema
All Travelport JSON APIs.
Detailed Description
Schema change to resolve incorrect data type. Originally defined as a Boolean, the JSON service is returning these as a String. Updating the OAS to comply with the JSON API response.
URL: Advisory Link
Overview
A multi-phase update to JSON API error handling was released in June 2024 across all JSON APIs. Consistent error messages are now returned for all content, including GDS and NDC, across all JSON Air APIs. The updated Error Message List can be viewed at the Error Message support site.
This Developer Advisory is to inform of new and revised error messages supported by JSON APIs.
Customer Benefit
Consistent error messages are returned for all content, including GDS and NDC, across all JSON Air APIs.
Impacted Services and Schema
All Travelport JSON APIs.
Detail and Customer Examples
The following tables list the new and revised error messages returned in the JSON APIs for all objects in Error/Result except SourceID, which may return API, a supplier code, or the GDS code 1G.
URL: Advisory Link
Overview
Travelport Queue Control Console (QCC) release V24.2 benefits from the following:
Customer Benefit
Detail and Customer Examples
Ability to refile fare quote string greater than 62 characters
URL: Advisory Link
Advisory Number: PA-4458
Version: 1
Effective Date: August 03, 2024 6pm EDT
High Level Description: Additional Travelport Automated Exchanges (Rapid Reprice) participating carrier T'way Air (TW) for Travelport+ agency subscribers.
Impact Summary: Travelport+ subscribers will have the ability to perform an automated exchange/reissue a ticket when a customer makes a voluntary change to their itinerary.
Reason for Issue: First notification
Impacted Customers:
System(s): Travelport+ (1G)
Load to Pre-Production: Available now
Web Services (API and Messaging): This enhancement will be applicable to all APIs leveraging the Travelport Rapid Reprice Engine.
Overview
The following carrier has been added as a Travelport Automated Exchanges (Rapid Reprice) participating carrier for Travelport+ subscribers:
The full list of carriers activated for Travelport Automated Exchanges (Rapid Reprice) may be seen under MyTravelport answer KB0018338 entitled Participating airlines in Automated Exchanges (Rapid Reprice) / Apollo ARNE for all Travelport GDS's.
Customer Benefit
URL: Advisory Link
Overview
Travelport+ users will be able to view details about New Distribution Capability (NDC) tickets that are voided by an airline in the agency Ticket and Invoice Numbering system (TINS) report.
Additionally, a Machineable Interface Record (MIR) will be automatically generated for such transactions where the NDC order is canceled by the agency user and the airline voids the NDC ticket.
The data will be transmitted in the agency back-office system through MIR and the void information will be presented in the designated sections to streamline the workflow for our agency users.
Customer Benefit
Detail and Customer Examples
The agency TINS will record the NDC ticket transactions that are voided. The indicator N will allow the agencies to identify the NDC ticket transactions from Traditional along with the status of VOID.
URL: Advisory Link
Overview: TPAirExchangeAncillaries is the Open API Specification for Travelport JSON APIs. This advisory informs of a change in referenced class within the Offer schema. Once implemented, TermsAndConditionsFull will now reference TermsAndConditionsFullID.
Applications that are using code generated from TPAirExchangeAncillaries will need to rebuild their project with the new specification and adjust their application code accordingly.
Scope: Impacts JSON API users when TPAirExchangeAncillaries OAS has been used for code generation.
Customer Benefit: Corrected TermsAndConditionsFullID reference.
Schema Changes: TPAirExchangeAncillaries 11.17.5 OAS, offer schema includes property TermsAndConditionsFull which now references TermsAndConditionsFullID, previously referenced as TermsAndConditionsFull.
URL: Advisory Link
Overview: A new "TravelAgencyDetail" class will be returned upon Reservation Retrieve transactions when a Travel Agency Address, Email, or Telephone is included in the Reservation.
This advisory informs of a new schema being added to Reservation Retrieve functionality. The new TravelAgencyDetail schema will be returned when a Travel Agency Address, Email, or Telephone is included in the Reservation.
Applications that are using code generated from TPAirExchangeAncillaries will need to rebuild their project with the new specification and adjust their application code accordingly.
If changes are not managed in the application code, a deserialization error will occur when Travel Agency Address, Email, or Telephone are part of the Reservation, and the new schema class is returned.
URL: Advisory Link
Overview: A multi-phase update to JSON API error handling was released in June 2024 across all JSON APIs. Consistent error messages are now returned for all content, including GDS and NDC, across all JSON Air APIs. The updated Error Message List can be viewed at the Error Message support site.
This Developer Advisory is to inform of new and revised error messages supported by JSON APIs.
Customer Benefit: Consistent error messages are returned for all content, including GDS and NDC, across all JSON Air APIs.
Impacted Services and Schema: All Travelport JSON APIs.
Detail and Customer Examples: The following tables list the new and revised error messages returned in the JSON APIs for all objects in Error/Result except SourceID, which may return API, a supplier code, or the GDS code 1G.
URL: Advisory Link
China Airlines
Supplier Code: CI
Effective immediately, the following AIR product(s) will be supported by carrier China Airlines (CI) as of Wednesday, 31 July.
Supported Product: EMD Ancillary
System(s): Travelport + (1G)
Additional Details:
CI has made some changes to their paid bag processing and they will only support C/0H8 effective immediately. The EMD fact sheet will be updated to reflect these changes. The non-baggage fees will remain unchanged.
Ancillary RFISC: EXCESS PIECE SPECIAL CHARGE - 0H8
SATA int Azores Airlines
Supplier Code: S4
SATA Air Acores
Supplier Code: SP
With immediate effect, the following AIR product was successfully implemented with SATA Int Azores Airlines and SATA Air Acores [SP] on Thursday, 18 July.
Product: EMD Ancillary
System(s): Travelport + (1G)
Additional Details:
Ancillary | RFISC |
---|---|
Pet in hold up to 23kg | 0BS |
Supplier Code: FJ
It is planned to implement the following AIR product(s) with carrier Fiji Airways on Thursday, 8th August.
System(s):
Supplier Code: HB
It is planned to implement the following AIR product(s) with new participating carrier Greater Bay Airlines on Thursday, 18th July.
System(s):
Supplier Code: TK
It is planned to implement the following AIR product(s) with Turkish Airlines on Tuesday, 30th July.
System(s):
Ancillary | RFISC |
---|---|
Weight System Charge | 0DG |
Baggage Between 51 and 70 lbs. | 0DA |
Overview: This notification is to inform JSON API Customers about upcoming changes to the GDS Exchange workflow. Going forward, the payment step will be mandatory for exchange commit. The payment step will become mandatory for exchange commit in all scenarios. Failure to include the payment step will result in error for both issue now and issue later scenarios.
Customer Benefit: Making payment mandatory for all exchange scenarios through the JSON Exchange API streamlines the ticketing process, ensuring consistency and reliability for users.
Detailed Description:
System Behavior for Payment Step with Pay Later Indicator:
Payment Step | Pay Later Indicator in Commit Request | Current Behavior | Future Behavior |
---|---|---|---|
Send payment Request | payLaterInd=true | Hold Booking | Hold Booking |
payLaterInd=false (or no payLaterInd) | Issue Tickets | Issue Tickets | |
Do not send payment Request | payLaterInd=true | Hold Booking | Error |
payLaterInd=false (or no payLaterInd) | Hold Booking | Error |
Overview: Part of the normalization effort for NDC and GDS booking creation, and to ensure the NDC bookings for AF/KLM are not rejected, the Travel Agency object has been introduced through Restful API Microservices Book API.
Scope: NDC and Travelport+ GDS.
Customer Benefit: The customer will have a specific designated block to add the Travel Agency information.
Schema Changes: Yes
Impacted Services and Schema: Restful API Microservices Model 11.17
Detailed Description: With the new schema 11.17 swagger will provide new end points for Add Agency Email Address and Add Agency Telephone Number. Once the agency email address and telephone number is added through the Travel Agency object, it will be saved in the host for both GDS and NDC workflows.
Pre ET workflow:
Search -> Price (Optional) -> Initiate Workbench -> Add Offer -> Add Traveler -> Add/Update/Delete Agency Email and(or) Telephone -> Add Optional Services -> Pre-ET Retrieve -> Commit Workbench -> Retrieve PNR.
Post ET workflow:
Initiate Workbench with PNR -> Add/Update/Delete Agency Email and(or) Telephone -> Modify Traveler (Optional) -> Pre-ET Retrieve -> Commit Workbench -> Retrieve PNR.
Customer Examples: The following examples show how to add the Agency email address and telephone number, along with the API response.
In preparation for Two Factor Authentication on Travelport+ users are requested to add a business email address to their sign-on profile.
Overview: In preparation for Two Factor Authentication (2FA) on Travelport+, a business email address will be requested at sign-on. Once 2FA is active, a business email address will be required to sign-on. Without a confirmed business email address attached to a user sign-on profile, the user will not be able to sign onto the Travelport+ system using their one-time-password (OTP).
Pease note:
Customer Benefit: Prepare Travelport+ for two factor authentication (2FA) by allowing users to receive an OTP via email.
Users can add or change their business email addresses now to make the OTP process easier.
Detail and Customer Examples: The enhanced sign-on profile business email process, described in this document, will work concurrently with the existing implementation (*EM) used for the host password reset process. The *EM process will eventually be retired.
After signing-on, a user will be prompted to add a business email address when no business email address is found for their sign-on profile. The user will also be prompted to confirm a business email address when a business email address was added but not confirmed in their user sign-on profile. The email entries can be used at any time after a successful sign-on.
The new functions include; add, change, confirm, and display. Note:
The help screen will be updated to reflect the entry formats.
Overview: With this enhancement, Travelport+ users will be able to display the complete TINS report. Additionally, new search options of START (starting line number) and NUML (number of lines) will allow the user to do a partial display as required. The maximum number of lines displayed on the TINS report is limited to 32,760 if there is more data to be displayed beyond that, the user will be presented with the entry option to display the remaining data.
Customer Benefit: Enable efficient tracking of transactions through the sales report for each day.
Detail and Customer Examples: The HMPR input format will support the new search options during the TINS display these being; START- and NUML-.
HMPR/START-aaaaaaa/NUML-bbbbb
HMPR
= TINS Display Action Code/
= SeparatorSTART-
= Starting Line Number identifieraaaaaaa
= Starting line number. Max 7 digits/
= SeparatorNUML-
= Number of Lines identifierbbbbb
= Number of lines to be displayed. Maximum 5 digits with maximum value of
32,760Overview: The modifications to the Travelport JSON API as outlined in Developer Advisory DA-1006 entitled JSON API Error Improvements introduce a significant overhaul of the current error-handling mechanisms. The primary aim is to ensure that errors, whether emanating from the GDS or any supplier, including NDC (New Distribution Capability) and MSC (Multi Source Content), are normalized to maintain consistency. This initiative is not just about changing codes or messages; it's about creating a more intuitive and developer-friendly environment that reduces the time spent on debugging and error resolution.
Developer Advisory DA-1011: Changes to Error Data in the JSON API CSV files provided details regarding changes to specific Travelport JSON API Errors, with three CSV file attachments.
CSV File Attachments:
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
For seat assignment, agents have to request it through local BS reservation team until further notice.
URL: Advisory Link
Please take note the release of this new added functionality has been postponed. A new launch date will be communicated in due course.
Reference to the product advisory is below with the full original [with original launch date] is attached for reference.
PA-4410 (Version 1) Infant with Selected Adult Association
URL: Advisory Link
Click here to view the full advisory
Click here to view the full advisory
Click here to view the full advisory
Click here to view the full advisory
Click here to view the full advisory
Supplier Code - PK
It is planned to implement the following AIR product(s) with carrier Pakistan Intl Airlines on Thursday 2nd May.
System(s):
The following fees are included in this Electronic Miscellaneous Document release.
Category | Code |
---|---|
Ancillary | RFISC |
Group Deposit | 03E |
Advisory Number: PA-4412
Version: 2
Effective Date: April 20, 2024 12pm EDT
High Level Description: This new ancillary service for cabin baggage for Transavia Airlines (HV) and Transavia France (TO) will be available for purchase in Travelport Smartpoint (Desktop) and SOAP XML point of sale (POS).
Impact Summary: Cabin baggage will be available for purchase in Travelport Smartpoint (Desktop) and SOAP XML point of sale (POS).
Reason for Issue: Revised effective date.
Impacted Customers: Agency customers, eCommerce customers, Developers, Airline customers
Load to Pre-Production: April 16, 2024 10am EDT
Web Services (API and Messaging): SOAP/XML API Services customers should be aware of the newly added Cabin Baggage ancillary in the Transavia Airlines (HV) and Transavia France (TO) API.
Issue History: Version 1 issue date: April 15, 2024 6.30am EDT
More Details: Advisory Link
Advisory Number: PA-4404
Version: 3
Effective Date: April 03, 2024 12am EDT
High Level Description: For tickets purchased on or after April 3, 2024, cabin bags are an additional charge when traveling on Transavia Airlines (HV) and Transavia France (TO) for Basic and Plus fares.
Impact Summary: Cabin bags are not immediately available for purchase in Travelport Smartpoint (Desktop) and SOAP XML point of sale (POS). A separate Advisory will be issued regarding the ability to purchase cabin bags in Travelport systems once the effective date is confirmed. In the interim, cabin bags can be purchased on the Transavia website. Version 02 / 03 Update: Cabin Bag Ancillaries will be available in Travelport Smartpoint (Desktop) and SOAP XML points of sale from 12pm EDT on April 20, 2024 refer to PA-4412 for details.
Reason for Issue: Revised date for the availability of Cabin Bag Ancillaries in Travelport Smartpoint (Desktop) and SOAP XML point of sale (POS) as detailed in separate Product Advisory PA-4412.
Impacted Customers: Agency customers, eCommerce customers, Developers, Airline customers
Load to Pre-Production: Not applicable
Issue History:
More Details: Advisory Link
Click here to view the full advisory
Effective date: November 2, 2023, 8pm EDT
Travelport system: Travelport+ (1G)
Reason for issue: Revised date (May 2, 2024) for the activation of the functionality for all Travelport+ users.
High level description: NDC order will be updated to include a filed fare with ticket number, generate daily activity report and MIR for original book and modify workflow. This is the first step toward normalizing the NDC order to look and feel like traditional.
Click here to view the full advisory
Effective date: April 30, 2024, 6pm EDT
Travelport system: Travelport+ (1G)
Reason for issue: First notification
High level description: Note: This Advisory is applicable only for Agencies with point of sale Spain. The new version of the SARA Smartpoint plugin will introduce the validation of the format for the Large Family certificate.
Click here to view the full advisory
Effective date: November 2, 2023, 8pm EDT
Travelport system: Travelport+ (1G)
Reason for issue: Additional examples (example 9, 10, and 11) have now been added into the 'detail and customers examples' section of this Advisory for the display of NDC transactions in the Ticket and Invoice Numbering System (TINS). Additionally, a further revised date (May 9, 2024) for the activation of the functionality for all Travelport+ users.
High level description: NDC order will be updated to include a filed fare with ticket number, generate daily activity report and MIR for original book and modify workflow. This is the first step toward normalizing the NDC order to look and feel like traditional.
Overview
Throughout April, May, and June 2024. We are making significant improvements to our error handling framework within the Travelport JSON API. As part of these enhancements, errors originating from both our Global Distribution System (GDS) and our suppliers (inclusive of NDC and MSC content) will undergo a normalization process to ensure consistency across all content sources.
Customer Benefit
Customers will benefit from a newly standardized error handling framework with consistent messaging and codes with new error categories.
Details
We will be changing some error source codes, changing some error messages, and introducing a category.
The improved error messages will include a consistent ErrorDetail object in the body of the response.
ErrorDetail Properties
Overview
The following AIR product was successfully implemented with LHG Airlines (Lufthansa/Swiss/Austrian/Brussels) effective immediately.
Customer Benefit
Mono- coupon functionality for paid seats to automatically issue a separate EMD per segment.
Stand Alone Fee | RFISC |
---|---|
Transport Credit Voucher | D/98B |
Stand Alone Fee | RFISC |
---|---|
Transport Credit Voucher | D/98B |
Overview
High level description For tickets purchased on or after April 3, 2024, cabin bags are an additional charge when traveling on Transavia Airlines (HV) and Transavia France (TO) for Basic and Plus fares.
Customer Benefit
SNCF Rail content will be retired from Travelport Universal API (uAPI).
Customer Benefit
These service updates for the NDC and European Rail plugins will improve load times and reduce the frequency for authentication.
These updates apply to users of Travelport Smartpoint 11.1 and higher.
URL: Advisory LinkCustomer Benefit
These service updates for the NDC and European Rail plugins will improve load times and reduce the frequency for authentication.
These updates apply to users of Travelport Smartpoint 11.1 and higher.
URL: Advisory LinkCustomer Benefit
Effective immediately, Air France (AF) and KLM (KL) require the Agency Email Address to be added to the NDC booking.
URL: Advisory LinkReason for issue
Revised effective date. Additionally, further updates have been made to indicate that the service updates for the NDC plugin apply to Travelport Apollo only, and that the service updates for the European Rail plugin apply to Travelport+ only.
These service updates for the NDC and European Rail plugins will improve load times and reduce the frequency for authentication. These updates apply to users of Travelport Smartpoint 11.1 and higher. The service updates for the NDC plugin apply to Travelport Apollo only. The service updates for the European Rail plugin apply to Travelport+ only.
URL: Advisory Link
Ancillary | RFISC |
---|---|
UNACCOMPANIED MINOR | 0BH |
Supplier Code UL
With immediate effect, the following AIR products were successfully implemented with SriLankan Airlines on Friday, 16 February.
System(s): | EMD Ancillary |
---|---|
Travelport + (1G) | |
Travelport Apollo (1V) | |
Travelport Worldspan (1P) |
Additional Details:
Ancillary | RFISC |
---|---|
BON VOYAGE CAKE MEAL | 02I |
HONEYMOON CAKE MEAL | 02H |
URL: Advisory Link
Notes: PA-4388
Notes: PA-4353 (Version 1)
PA-4378 (Version 3)
Notes: PA-4325 (Version 8)
Notes: PA-4394 (Version 1)
Supplier Code: EN
On Wednesday, January 10, the following AIR product(s) were successfully activated with Air Dolomiti:
Change Requests:
Refund requests:
Please contact Pegasus Airlines directly for assistance regarding the above message.Yours,Pegasus Alternative Sales Channels
Information for Apollo/Travelport+ Test & Copy System Users On JAN 22, 2024, COPY & TEST Systems Refresh activities will commence using
production captures. New databases introduced afterward. Refreshed TEST System (TAPC/D, TREA/B) databases on JAN 25, 2024 from 2030ET �
2230ET. Refreshed COPY System (CAPA/G, CREA/B) databases on JAN 26, 2024 from
1900 ET � 2100 ET. All test systems must be VPCLEARed on JAN 18, 2024 and JAN 25, 2024. Static test
systems date after refresh: JAN 22, 2024. Questions to Karen Henderson : TPF Test Systems Support group at TO_TEST@travelport.com. Definitions for Production Capture, Test Systems VPARS, Test System Cutover, Copy
Systems, and Copy System Cutover provided.Scheduled (EST)
System(s)
Start
End
Date
TAPC/D & TREA/B
2030
1900
Thursday JAN 25 2024
CAPA/G & CREA/B
2230
2100
Friday JAN 26 2024
Details
Refresh Notification
Cutover Dates
Additional Information
Contact
Glossary of Terms
URL: Advisory Link
Planned Implementation with Thai Vietjet Air
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
Please refer attached and appreciate your assistance to disseminate the notification to agents.
URL: Advisory Link
URL: Advisory Link
URL: Advisory Link
URL: Advisory Link
Notes: PA-4352 (Version 2)
URL: Advisory Link
Notes: PA-4325 (Version 4)
Notes:
Notes:
Notes:
URL: Advisory Link
Notes:
Notes:
URL: Advisory Link
Notes:
URL: Advisory Link
Notes:
URL: Advisory Link
Notes:
URL: Advisory Link
Notes:
URL: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
1. Starlux Airlines [JX]: Rich Content & Branding
url: Advisory Link
3. China Airlines [CI]: Reiteration of Passenger Contact Input Policyurl: Advisory Link
4. Binman Bangladesh Airlines [BG]: Up-to-date Booking Policy and Agency Debt Memo Policyurl: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
Notes:
Notes:
url: Advisory Link
Notes:
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
url: Advisory Link
Notes:
Support Queries/Feedback
Select a dropdown:
Feel free to contact E-commerce team email apisupport@itq.in if you have any queries