1. UniversalRecordCancel
- Endpoint : https://apac.universal-api.pp.travelport.com/B2BGateway/connect/uAPI/UniversalRecordService

Overview:
- PNR 모든 여정을 취소 할 수 있는 서비스 입니다.
- 취소가 안되는 경우가 발생하는 경우를 대비해 취소 후 여정이 삭제되었는지 확인하는 프로세서를 넣어주면 좋습니다.
- 취소 서비스 : UniversalRecordCancelReq, AirCancelReq 두가지 중 선택 가능
기본 Attribute
- UniversalRecordLocatorCode: UR PNR
1. UniversalRecordCancelReq
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:univ="http://www.travelport.com/schema/universal_v49_0" xmlns:com="http://www.travelport.com/schema/common_v49_0"> <soapenv:Header/> <soapenv:Body> <univ:UniversalRecordCancelReq TraceId="2020042818322322" AuthorizedBy="Travelportkorea" TargetBranch="P*******" UniversalRecordLocatorCode="0TUODB" Version="1"> <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> </univ:UniversalRecordCancelReq> </soapenv:Body> </soapenv:Envelope> |
UniversalRecordCancelRsp
1 2 3 4 5 6 7 8 9 10 11 |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Body> <universal:UniversalRecordCancelRsp TraceId="2020042818322322" TransactionId="C448EF6D0A07643B0420C460A1EF6488" ResponseTime="1274" xmlns:universal="http://www.travelport.com/schema/universal_v49_0"> <universal:ProviderReservationStatus CreateDate="2020-04-29T00:50:26.337+00:00" ModifiedDate="2020-04-29T04:54:07.871+00:00" ProviderCode="1G" LocatorCode="34KKNQ" Cancelled="true"> <universal:CancelInfo Code="0" Type="Warning">ITIN CHANGE - FILED FARES CANCELLED</universal:CancelInfo> </universal:ProviderReservationStatus> </universal:UniversalRecordCancelRsp> </SOAP:Body> </SOAP:Envelope> |
- Cancelled=”true” 로 와도 여정취소가 안되는 경우가 가끔 발생 –
- true, false 결과에 대한 상세 메시지 없음
- Cancelled=”false” 인 경우 : PNR 이 열려 있는 경우, 항공사에서 수정 작업중인 경우 등등
2. AirCancelReq
- Endpoint : https://apac.universal-api.pp.travelport.com/B2BGateway/connect/uAPI/AirService
기본 Attribute
- 모든 세그 넣어를 넣어 주면 : UniversalRecordCancel 와 동일
- 결과가 상세 하여 AirSegment 가 취소 되었는지 결과로 바로 알수 있음.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:univ="http://www.travelport.com/schema/universal_v50_0" xmlns:com="http://www.travelport.com/schema/common_v50_0" xmlns:air="http://www.travelport.com/schema/air_v50_0"> <soapenv:Header> <univ:SupportedVersions/> </soapenv:Header> <soapenv:Body> <univ:AirCancelReq Version="2" TargetBranch="TPKIKSBUT" AuthorizedBy="TEST"> <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> <air:AirReservationLocatorCode>123ABC</air:AirReservationLocatorCode> <air:AirSegment Key="y33O8YSqWDKALiRBeAAAAA==" Group="1" Carrier="UA" FlightNumber="2290" ProviderCode="1G" Origin="ORD" Destination="ATL" DepartureTime="2023-07-26T14:05:00.000-05:00" ArrivalTime="2023-07-26T16:58:00.000-04:00" ClassOfService="S" Status="HK"/> </univ:AirCancelReq> </soapenv:Body> </soapenv:Envelope> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Body> <universal:AirCancelRsp TransactionId="5A5155350A0D6A935CA32C9B26297D14" ResponseTime="1992" xmlns:universal="http://www.travelport.com/schema/universal_v50_0" xmlns:common_v50_0="http://www.travelport.com/schema/common_v50_0" xmlns:air="http://www.travelport.com/schema/air_v50_0"> <common_v50_0:ResponseMessage Code="0" Type="Info">AirSegment Cancelled Successfully</common_v50_0:ResponseMessage> <common_v50_0:ResponseMessage Code="1" Type="Warning" ProviderCode="1G">ITIN CHANGE - FILED FARES CANCELLED</common_v50_0:ResponseMessage> <common_v50_0:ResponseMessage Code="3007" Type="Warning" ProviderCode="1G">The reservation returned by the host changed. The segment information is now updated and the pricing data has been removed.</common_v50_0:ResponseMessage> <universal:UniversalRecord LocatorCode="234BCD" Version="3" Status="Active"> <common_v50_0:BookingTraveler Key="Qm9va2luZ1RyYXZlbGVyMQ==" TravelerType="ADT"> <common_v50_0:BookingTravelerName Prefix="Mr" First="CARSTEN" Last="LINDELOEV"/> <common_v50_0:PhoneNumber Key="y33O8YSqWDKA/fSBeAAAAA==" Type="Home" Location="DEN" CountryCode="011" Number="227-722-2454" Extension="22" AreaCode="222" Text="Abc-Xy"> <common_v50_0:ProviderReservationInfoRef Key="y33O8YSqWDKAerSBeAAAAA=="/> </common_v50_0:PhoneNumber> <common_v50_0:Email Key="y33O8YSqWDKAOgSBeAAAAA==" Type="Home" EmailID="jtestora@travelport.com"> <common_v50_0:ProviderReservationInfoRef Key="y33O8YSqWDKAerSBeAAAAA=="/> </common_v50_0:Email> <common_v50_0:SSR Key="y33O8YSqWDKAAgSBeAAAAA==" Status="HK" Type="DOCS" FreeText="P/CA/F9850356/GB/04JAN80/M/01JAN14/LINDELOEV/CARSTENGJELLERUPMR -1LINDELOEV/CARSTENMR" Carrier="UA" ProviderReservationInfoRef="y33O8YSqWDKAerSBeAAAAA==" ElStat="M"/> <common_v50_0:Address Key="y33O8YSqWDKAPgSBeAAAAA=="> <common_v50_0:AddressName>Jan Restora</common_v50_0:AddressName> <common_v50_0:Street>6901 S. Havana</common_v50_0:Street> <common_v50_0:Street>Apt 3</common_v50_0:Street> <common_v50_0:City>Englewood</common_v50_0:City> <common_v50_0:State>CO</common_v50_0:State> <common_v50_0:PostalCode>80111</common_v50_0:PostalCode> <common_v50_0:Country>US</common_v50_0:Country> <common_v50_0:ProviderReservationInfoRef Key="y33O8YSqWDKAerSBeAAAAA=="/> </common_v50_0:Address> </common_v50_0:BookingTraveler> <common_v50_0:BookingTraveler Key="Qm9va2luZ1RyYXZlbGVyMg==" TravelerType="ADT"> <common_v50_0:BookingTravelerName Prefix="Mr" First="john" Last="DOE"/> <common_v50_0:PhoneNumber Key="y33O8YSqWDKADgSBeAAAAA==" Type="Home" Location="DEN" CountryCode="011" Number="227-702-2454" Extension="22" AreaCode="222" Text="Abd-Xy"> <common_v50_0:ProviderReservationInfoRef Key="y33O8YSqWDKAerSBeAAAAA=="/> </common_v50_0:PhoneNumber> <common_v50_0:Email Key="y33O8YSqWDKAQgSBeAAAAA==" Type="Home" EmailID="jtestora@travelport.com"> <common_v50_0:ProviderReservationInfoRef Key="y33O8YSqWDKAerSBeAAAAA=="/> </common_v50_0:Email> <common_v50_0:SSR Key="y33O8YSqWDKAEgSBeAAAAA==" Status="HK" Type="DOCS" FreeText="P/CA/F9850356/GB/04JAN80/M/01JAN14/DOE/JHONJELLERUPMR -1DOE/JOHNMR" Carrier="UA" ProviderReservationInfoRef="y33O8YSqWDKAerSBeAAAAA==" ElStat="M"/> <common_v50_0:Address Key="y33O8YSqWDKARgSBeAAAAA=="> <common_v50_0:AddressName>Jan Restora</common_v50_0:AddressName> <common_v50_0:Street>6901 S. Havana</common_v50_0:Street> <common_v50_0:Street>Apt 3</common_v50_0:Street> <common_v50_0:City>Englewood</common_v50_0:City> <common_v50_0:State>CO</common_v50_0:State> <common_v50_0:PostalCode>80111</common_v50_0:PostalCode> <common_v50_0:Country>US</common_v50_0:Country> </common_v50_0:Address> </common_v50_0:BookingTraveler> <common_v50_0:ActionStatus Key="y33O8YSqWDKATgSBeAAAAA==" Type="TAU" TicketDate="2023-02-21T23:59:00.000+10:00" ProviderReservationInfoRef="y33O8YSqWDKAerSBeAAAAA==" ProviderCode="1G"/> <universal:ProviderReservationInfo Key="y33O8YSqWDKAerSBeAAAAA==" ProviderCode="1G" LocatorCode="345678" CreateDate="2023-02-16T13:00:52.862+00:00" ModifiedDate="2023-02-16T13:02:07.085+00:00" HostCreateDate="2023-02-16" OwningPCC="PCCP"/> <air:AirReservation LocatorCode="123ABC" CreateDate="2023-02-16T13:00:51.918+00:00" ModifiedDate="2023-02-16T13:02:07.085+00:00"> <common_v50_0:SupplierLocator SupplierCode="UA" SupplierLocatorCode="HIJKLM" ProviderReservationInfoRef="y33O8YSqWDKAerSBeAAAAA==" CreateDateTime="2023-02-16T13:00:00.000+00:00"/> <common_v50_0:BookingTravelerRef Key="Qm9va2luZ1RyYXZlbGVyMQ=="/> <common_v50_0:BookingTravelerRef Key="Qm9va2luZ1RyYXZlbGVyMg=="/> <common_v50_0:ProviderReservationInfoRef Key="y33O8YSqWDKAerSBeAAAAA=="/> <air:AirSegment Key="y33O8YSqWDKANiRBeAAAAA==" Group="0" Carrier="UA" CabinClass="Economy" FlightNumber="1888" ProviderCode="1G" Origin="ATL" Destination="ORD" DepartureTime="2023-07-31T07:00:00.000-04:00" ArrivalTime="2023-07-31T08:04:00.000-05:00" TravelTime="124" Distance="600" ClassOfService="S" ETicketability="Yes" Equipment="319" Status="HK" ChangeOfPlane="false" GuaranteedPaymentCarrier="No" ProviderReservationInfoRef="y33O8YSqWDKAerSBeAAAAA==" TravelOrder="1" ProviderSegmentOrder="1" OptionalServicesIndicator="false" AvailabilitySource="S" ParticipantLevel="Secure Sell" LinkAvailability="true" PolledAvailabilityOption="O and D cache or polled status used with different local status"> <air:FlightDetails Key="y33O8YSqWDKAChSBeAAAAA==" Origin="ATL" Destination="ORD" DepartureTime="2023-07-31T07:00:00.000-04:00" ArrivalTime="2023-07-31T08:04:00.000-05:00" FlightTime="124" TravelTime="124" Equipment="319" OriginTerminal="N" DestinationTerminal="1" AutomatedCheckin="false"/> <common_v50_0:SellMessage>DEPARTS ATL TERMINAL N - ARRIVES ORD TERMINAL 1</common_v50_0:SellMessage> <common_v50_0:SellMessage>*ADV PAX FLT ARRIVES TERMINAL-1*</common_v50_0:SellMessage> <common_v50_0:SellMessage>*ADV PAX FLT DEPARTS TERMINAL-N*</common_v50_0:SellMessage> </air:AirSegment> </air:AirReservation> <common_v50_0:AccountingRemark Key="LJZ+WN/Y3BKADAAAAAAAAA==" Category="FT" TypeInGds="Other" ProviderCode="1G" ProviderReservationInfoRef="y33O8YSqWDKAerSBeAAAAA=="> <common_v50_0:RemarkData>AP-5555123456789013/PK-45689</common_v50_0:RemarkData> </common_v50_0:AccountingRemark> <common_v50_0:AgencyInfo> <common_v50_0:AgentAction ActionType="Created" AgentCode="UD_AGT_PP" BranchCode="TPKIKSBUT" AgencyCode="S1TRAVEL" EventTime="2023-02-16T13:00:48.676+00:00"/> <common_v50_0:AgentAction ActionType="Modified" AgentCode="UD_AGT_PP" BranchCode="TPKIKSBUT" AgencyCode="S1TRAVEL" EventTime="2023-02-16T13:02:05.141+00:00"/> </common_v50_0:AgencyInfo> <common_v50_0:FormOfPayment Key="PDz8y7xu4hGfaM/wYIhwmw==" Type="Credit" Reusable="true" ProfileKey="TKrwf68DTxGUiCbScCHKSA=="> <common_v50_0:CreditCard Type="CA" Number="************5557" ExpDate="2024-12" Name="JAYA DOE"> <common_v50_0:BillingAddress Key="y33O8YSqWDKASgSBeAAAAA=="> <common_v50_0:AddressName>Jan Testora</common_v50_0:AddressName> <common_v50_0:Street>6901 S. Havana</common_v50_0:Street> <common_v50_0:Street>Apt 2</common_v50_0:Street> <common_v50_0:City>Englewood</common_v50_0:City> <common_v50_0:State>CO</common_v50_0:State> <common_v50_0:PostalCode>8011</common_v50_0:PostalCode> <common_v50_0:Country>AU</common_v50_0:Country> </common_v50_0:BillingAddress> </common_v50_0:CreditCard> <common_v50_0:ProviderReservationInfoRef Key="y33O8YSqWDKAerSBeAAAAA=="/> </common_v50_0:FormOfPayment> </universal:UniversalRecord> </universal:AirCancelRsp> </SOAP:Body> </SOAP:Envelope> |