LowFareSearchRsp 에서 대략적인 BaggageAllowance 만 확인 할 수 있습니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<air:FareInfoList> <air:FareInfo Key="0qOBljGDuDKAPyeCefAAAA==" FareBasis="QLX0ZBYK" PassengerTypeCode="ADT" Origin="ICN" Destination="LAX" EffectiveDate="2025-09-02T18:34:00.000+09:00" DepartureDate="2025-10-10" Amount="KRW350000" NegotiatedFare="false" NotValidAfter="2026-04-10"> <air:BaggageAllowance> <air:NumberOfPieces>2</air:NumberOfPieces> <air:MaxWeight/> </air:BaggageAllowance> <air:FareRuleKey FareInfoRef="0qOBljGDuDKAPyeCefAAAA==" ProviderCode="1G">gws-eJxNjksOwjAMRA9TzX5iaKPuEpoiVS1R+YmGBfc/Bk5SJCzZHuslYzvnhNKyp7j/aPBp5hHxOQARorn4DdKKWBidEkgecF02vk9pRjYxNFQUC67dlIfnLhy1YZTQV5QDqdRpiMqqs3oa5NXIUn/gJ1avMvrw6C73m262tHytO6SF3voFAgMscQ==</air:FareRuleKey> <air:Brand Key="0qOBljGDuDKAwzeCefAAAA==" BrandID="1877559" UpSellBrandID="1877558" BrandTier="0002"> <air:UpsellBrand FareBasis="MLX0ZKYK" FareInfoRef="0qOBljGDuDKAGzeCefAAAA=="/> </air:Brand> </air:FareInfo> <air:FareInfo Key="0qOBljGDuDKAgyeCefAAAA==" FareBasis="LLX0ZKYK" PassengerTypeCode="ADT" Origin="LAX" Destination="ICN" EffectiveDate="2025-09-02T18:34:00.000+09:00" DepartureDate="2025-10-15" Amount="KRW650000" NegotiatedFare="false" NotValidBefore="2025-10-11" NotValidAfter="2026-04-10"> <air:BaggageAllowance> <air:NumberOfPieces>2</air:NumberOfPieces> <air:MaxWeight/> </air:BaggageAllowance> <air:FareRuleKey FareInfoRef="0qOBljGDuDKAgyeCefAAAA==" ProviderCode="1G">gws-eJxNjtEKwyAMRT+m3Perrbq+KbWDoZMxOqh72P9/xqLtYIEkNxy9ifdeUxvO1P4/BnyGtKK8FqBAS96WgsleDPtUQXJEzjvfqSY0E0VlBJWOj676w6uNkzSsY5w7qkXirDnswg5n8VRoq9Gk/MBPPILIEuJm79tTNjs6nogOcukXr2Er6w==</air:FareRuleKey> <air:Brand Key="0qOBljGDuDKAyzeCefAAAA==" BrandID="1877559" UpSellBrandID="1877558" BrandTier="0002"> <air:UpsellBrand FareBasis="MLX0ZKYK" FareInfoRef="0qOBljGDuDKAQzeCefAAAA=="/> </air:Brand> </air:FareInfo> </air:FareInfoList> |
AirPrice, AirRetrieveDocument 에서 상세정보 확인
- Endpoint : https://apac.universal-api.pp.travelport.com/B2BGateway/connect/uAPI/AirService
Overview
수하물 정보는 AirPrice, 또는 발권 후 AirRetrieveDocument 에서 상세하게 확인 할 수 있습니다.
- UniversalRecordRetrieve 에서는 간단한 BaggageAllowance 정보만 나옵니다.
- 발권후 AirRetrieveDocument 에도 AirPrice 와 같은 BaggageAllowance (수하물 포함) 정보가 출력 됩니다.

AirRetrieveDocumentReq
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <air:AirRetrieveDocumentReq TargetBranch="P*******" AuthorizedBy="DEV" TraceId="2025082812232" RetrieveProviderReservationDetails="false" xmlns:air="http://www.travelport.com/schema/air_v53_0" xmlns:com="http://www.travelport.com/schema/common_v53_0" ProviderCode="1G"> <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> <com:TicketNumber>35028816*****</com:TicketNumber> <com:TicketNumber>35028816*****</com:TicketNumber> </air:AirRetrieveDocumentReq> </soap:Body> </soap:Envelope> |
AirRetrieveDocumentRsp
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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Body> <air:AirRetrieveDocumentRsp xmlns:air="http://www.travelport.com/schema/air_v53_0" xmlns:common_v53_0="http://www.travelport.com/schema/common_v53_0" TransactionId="EF2FFAE80A0E7DE754B06A80979B7DFC" ResponseTime="528" UniversalRecordLocatorCode="3YQMPE"> <air:ETR Key="12R+kjUAuDKAAjg5tIAAAA==" TotalPrice="KRW741500" BasePrice="KRW650000" Taxes="KRW91500" Refundable="true" Exchangeable="true" IssuedDate="2025-08-28T00:00:00.000+09:00" ProviderCode="1G" ProviderLocatorCode="D7GY6J" IATANumber="******" PseudoCityCode="******" CountryCode="KR" PlatingCarrier="YP"> <air:AirReservationLocatorCode>******</air:AirReservationLocatorCode> <common_v53_0:AgencyInfo> <common_v53_0:AgentAction ActionType="Created" AgentCode="******-C2B1F357" BranchCode="P2601500" AgencyCode="S2601492" EventTime="2025-08-27T15:00:00.000+00:00"/> </common_v53_0:AgencyInfo> <common_v53_0:BookingTraveler Key="qJe9kjn3nDKA+6c5tIAAAA==" TravelerType="ADT" DOB="2000-02-10" Gender="F"> <common_v53_0:BookingTravelerName Prefix=" MS" First="******" Last="******"/> <common_v53_0:SSR Key="12R+kjUAuDKAn2g5tIAAAA==" SegmentRef="nhNBljNDuDKA2Lp0rIAAAA==" Status="HK" Type="TKNE" FreeText="350288******C1" Carrier="YP" ProviderReservationInfoRef="qJe9kjn3nDKAmVD6tIAAAA=="/> <common_v53_0:SSR Key="12R+kjUAuDKAn3g5tIAAAA==" SegmentRef="nhNBljNDuDKA4Lp0rIAAAA==" Status="HK" Type="TKNE" FreeText="350288******C2" Carrier="YP" ProviderReservationInfoRef="qJe9kjn3nDKAmVD6tIAAAA=="/> </common_v53_0:BookingTraveler> <common_v53_0:FormOfPayment Key="12R+kjUAuDKAzhg5tIAAAA==" Type="Cash" Reusable="false" ProfileKey="HeWgjpRgSaaHxO9CUKbU+g=="/> <common_v53_0:Payment Key="12R+kjUAuDKA0hg5tIAAAA==" Type="Itinerary" Amount="KRW741500" FormOfPaymentRef="12R+kjUAuDKAzhg5tIAAAA=="/> <common_v53_0:SupplierLocator SupplierCode="YP" SupplierLocatorCode="****"/> <air:FareCalc>SEL YP TYO 200.94YP SEL 274.02 NUC474.96END ROE1368.504 XT 23300SW9500TK28000YQ</air:FareCalc> <air:Ticket Key="12R+kjUAuDKA2qg5tIAAAA==" TicketNumber="350288******" TicketStatus="V"> <air:Coupon Key="12R+kjUAuDKAgug5tIAAAA==" CouponNumber="1" MarketingCarrier="YP" MarketingFlightNumber="731" Origin="ICN" Destination="NRT" DepartureTime="2025-12-26T08:45:00.000+09:00" StopoverCode="true" BookingClass="P" FareBasis="POWS" NotValidBefore="2025-12-26" NotValidAfter="2025-12-26" Status="V" SegmentGroup="0" MarriageGroup="0"/> <air:Coupon Key="12R+kjUAuDKAF1g5tIAAAA==" CouponNumber="2" MarketingCarrier="YP" MarketingFlightNumber="732" Origin="NRT" Destination="ICN" DepartureTime="2025-12-29T12:30:00.000+09:00" StopoverCode="true" BookingClass="E" FareBasis="EOWS" NotValidBefore="2025-12-29" NotValidAfter="2025-12-29" Status="V" SegmentGroup="1" MarriageGroup="0"/> </air:Ticket> <air:AirPricingInfo Key="nhNBljNDuDKA8Lp0rIAAAA==" TotalPrice="KRW741500" BasePrice="KRW650000" ApproximateTotalPrice="KRW741500" ApproximateBasePrice="KRW650000" Taxes="KRW91500" LatestTicketingTime="2025-12-26T23:59:00.000+09:00" TrueLastDateToTicket="2025-12-26T23:59:00.000+09:00" PricingMethod="Guaranteed" Refundable="true" Exchangeable="true" ETicketability="Yes" PlatingCarrier="YP" ProviderReservationInfoRef="qJe9kjn3nDKAmVD6tIAAAA==" AirPricingInfoGroup="1" Ticketed="true" PricingType="StoredFare" FareCalculationInd="G"> <air:FareInfo Key="nhNBljNDuDKACMp0rIAAAA==" FareBasis="POWS" PassengerTypeCode="ADT" Origin="ICN" Destination="NRT" EffectiveDate="2025-08-28T00:00:00.000+09:00" Amount="NUC200.94" NegotiatedFare="false" NotValidBefore="2025-12-26" NotValidAfter="2025-12-26"> <common_v53_0:Endorsement Value="YP ONLY"/> <air:BaggageAllowance> <air:NumberOfPieces>1</air:NumberOfPieces> </air:BaggageAllowance> <air:Brand BrandID="1350685" Name="PREMIUM ECO STANDARD" Carrier="YP" BrandTier="0003"> <air:Title Type="External">Premium Eco Standard</air:Title> <air:Title Type="Short">PE</air:Title> <air:Text Type="MarketingConsumer">Choose our Premium Economy seats for a service as comfortable as your business needs</air:Text> <air:Text Type="Upsell">Choose our Premium Economy seats for a service as comfortable as your business needs</air:Text> <air:Text Type="MarketingAgent">Choose our Premium Economy seats for a service as comfortable as your business needs</air:Text> <air:Text Type="Strapline">Premium Eco Standard</air:Text> <air:ImageLocation Type="Consumer" ImageWidth="1061" ImageHeight="665">https://cdn.travelport.com/airpremiainc/YP_general_small_523737.png</air:ImageLocation> <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://cdn.travelport.com/airpremiainc/YP_general_small_523735.png</air:ImageLocation> <air:OptionalServices> <air:OptionalService Type="Baggage" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="0FM" Key="qJe9kjn3nDKAhQi08IAAAA=="> <air:EMD AssociatedItem="Chargeable Baggage"/> </air:OptionalService> <air:OptionalService Type="Baggage" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="0MJ" Key="qJe9kjn3nDKAiQi08IAAAA==" SecondaryType="Carry On Hand Baggage"> <air:EMD AssociatedItem="Chargeable Baggage"/> </air:OptionalService> <air:OptionalService Type="PreReservedSeatAssignment" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="0B5" Key="qJe9kjn3nDKAjQi08IAAAA=="> <air:EMD AssociatedItem="Flight"/> </air:OptionalService> <air:OptionalService Type="TravelServices" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="03P" Key="qJe9kjn3nDKAkQi08IAAAA=="> <air:EMD AssociatedItem="Flight"/> </air:OptionalService> <air:OptionalService Type="TravelServices" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="0G6" Key="qJe9kjn3nDKAlQi08IAAAA==" SecondaryType="Priority Boarding"> <air:EMD AssociatedItem="Flight"/> </air:OptionalService> </air:OptionalServices> </air:Brand> </air:FareInfo> <air:FareInfo Key="nhNBljNDuDKADMp0rIAAAA==" FareBasis="EOWS" PassengerTypeCode="ADT" Origin="NRT" Destination="ICN" EffectiveDate="2025-08-28T00:00:00.000+09:00" Amount="NUC274.02" NegotiatedFare="false" NotValidBefore="2025-12-29" NotValidAfter="2025-12-29"> <common_v53_0:Endorsement Value="YP ONLY"/> <air:BaggageAllowance> <air:NumberOfPieces>1</air:NumberOfPieces> </air:BaggageAllowance> <air:Brand BrandID="1350687" Name="ECONOMY STANDARD" Carrier="YP" BrandTier="0001"> <air:Title Type="External">Economy Standard</air:Title> <air:Title Type="Short">ES</air:Title> <air:Text Type="MarketingAgent">Economy Standard</air:Text> <air:Text Type="Strapline">Economy Standard</air:Text> <air:Text Type="MarketingConsumer">Economy Standard</air:Text> <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://cdn.travelport.com/airpremiainc/YP_general_small_523734.png</air:ImageLocation> <air:ImageLocation Type="Consumer" ImageWidth="1061" ImageHeight="665">https://cdn.travelport.com/airpremiainc/YP_general_small_523736.png</air:ImageLocation> <air:OptionalServices> <air:OptionalService Type="Baggage" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.972+00:00" ServiceSubCode="0GO" Key="qJe9kjn3nDKAoQi08IAAAA=="> <air:EMD AssociatedItem="Chargeable Baggage"/> </air:OptionalService> <air:OptionalService Type="Baggage" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.972+00:00" ServiceSubCode="0MJ" Key="qJe9kjn3nDKApQi08IAAAA==" SecondaryType="Carry On Hand Baggage"> <air:EMD AssociatedItem="Chargeable Baggage"/> </air:OptionalService> </air:OptionalServices> </air:Brand> </air:FareInfo> <air:BookingInfo BookingCode="P" CabinClass="PremiumEconomy" FareInfoRef="nhNBljNDuDKACMp0rIAAAA=="/> <air:BookingInfo BookingCode="E" CabinClass="PremiumEconomy" FareInfoRef="nhNBljNDuDKADMp0rIAAAA=="/> <air:TaxInfo Category="BP" Amount="KRW24000" Key="qJe9kjn3nDKAaQi08IAAAA=="/> <air:TaxInfo Category="OI" Amount="KRW6700" Key="qJe9kjn3nDKAbQi08IAAAA=="/> <air:TaxInfo Category="SW" Amount="KRW23300" Key="qJe9kjn3nDKAcQi08IAAAA=="/> <air:TaxInfo Category="TK" Amount="KRW9500" Key="qJe9kjn3nDKAdQi08IAAAA=="/> <air:TaxInfo Category="YQ" Amount="KRW28000" Key="qJe9kjn3nDKAeQi08IAAAA=="/> <air:FareCalc>SEL YP TYO 200.94POWS YP SEL 274.02EOWS NUC474.96END ROE1368.504</air:FareCalc> <air:PassengerType Code="ADT" BookingTravelerRef="qJe9kjn3nDKA76c5tIAAAA=="> <air:FareGuaranteeInfo GuaranteeType="Guaranteed"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="qJe9kjn3nDKA+6c5tIAAAA=="> <air:FareGuaranteeInfo GuaranteeType="Guaranteed"/> </air:PassengerType> <common_v53_0:BookingTravelerRef Key="qJe9kjn3nDKA76c5tIAAAA=="/> <common_v53_0:BookingTravelerRef Key="qJe9kjn3nDKA+6c5tIAAAA=="/> <air:ChangePenalty PenaltyApplies="Anytime"> <air:Amount>KRW40000</air:Amount> </air:ChangePenalty> <air:CancelPenalty PenaltyApplies="Anytime"> <air:Amount>KRW90000</air:Amount> </air:CancelPenalty> </air:AirPricingInfo> <air:BaggageAllowances> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="ICN" Destination="NRT" Carrier="YP"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/YP</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>1P</air:Text> <air:Text>BAGGAGE DISCOUNTS MAY APPLY BASED ON FREQUENT FLYER STATUS/ ONLINE CHECKIN/FORM OF PAYMENT/MILITARY/ETC.</air:Text> </air:TextInfo> <air:BagDetails ApplicableBags="1stChecked" BasePrice="KRW0" TotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO70LB/32KG</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>BAGGAGE CHARGES DATA NOT AVAILABLE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="NRT" Destination="ICN" Carrier="YP"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/YP</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>1P</air:Text> <air:Text>BAGGAGE DISCOUNTS MAY APPLY BASED ON FREQUENT FLYER STATUS/ ONLINE CHECKIN/FORM OF PAYMENT/MILITARY/ETC.</air:Text> </air:TextInfo> <air:BagDetails ApplicableBags="1stChecked" BasePrice="KRW0" TotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO70LB/32KG</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>BAGGAGE CHARGES DATA NOT AVAILABLE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:CarryOnAllowanceInfo Origin="ICN" Destination="NRT" Carrier="YP"> <air:TextInfo> <air:Text>2P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="KRW0" TotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO22LB/10KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> <air:CarryOnDetails ApplicableCarryOnBags="2" BasePrice="KRW0" TotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO22LB/10KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> </air:CarryOnAllowanceInfo> <air:CarryOnAllowanceInfo Origin="NRT" Destination="ICN" Carrier="YP"> <air:TextInfo> <air:Text>2P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="JPY0" TotalPrice="JPY0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO22LB/10KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> <air:CarryOnDetails ApplicableCarryOnBags="2" BasePrice="JPY0" TotalPrice="JPY0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO22LB/10KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> </air:CarryOnAllowanceInfo> </air:BaggageAllowances> </air:ETR> <air:ETR Key="12R+kjUAuDKA1hg5tIAAAA==" TotalPrice="KRW741500" BasePrice="KRW650000" Taxes="KRW91500" Refundable="true" Exchangeable="true" IssuedDate="2025-08-28T00:00:00.000+09:00" ProviderCode="1G" ProviderLocatorCode="******" IATANumber="******" PseudoCityCode="******" CountryCode="KR" PlatingCarrier="YP"> <air:AirReservationLocatorCode>******</air:AirReservationLocatorCode> <common_v53_0:AgencyInfo> <common_v53_0:AgentAction ActionType="Created" AgentCode="******-C2B1F357" BranchCode="P2601500" AgencyCode="S2601492" EventTime="2025-08-27T15:00:00.000+00:00"/> </common_v53_0:AgencyInfo> <common_v53_0:BookingTraveler Key="qJe9kjn3nDKA76c5tIAAAA==" TravelerType="ADT" DOB="1991-02-24" Gender="M"> <common_v53_0:BookingTravelerName Prefix=" MR" First="****" Last="****"/> <common_v53_0:PhoneNumber Key="qJe9kjn3nDKA86c5tIAAAA==" Type="Mobile" Location="SEL" CountryCode="82" Number="****" Text="CLIENT CONNECT"> <common_v53_0:ProviderReservationInfoRef Key="qJe9kjn3nDKAmVD6tIAAAA=="/> </common_v53_0:PhoneNumber> <common_v53_0:SSR Key="12R+kjUAuDKA81g5tIAAAA==" SegmentRef="nhNBljNDuDKA2Lp0rIAAAA==" Status="HK" Type="TKNE" FreeText="3502881674598C1" Carrier="YP" ProviderReservationInfoRef="qJe9kjn3nDKAmVD6tIAAAA=="/> <common_v53_0:SSR Key="12R+kjUAuDKAG3g5tIAAAA==" SegmentRef="nhNBljNDuDKA4Lp0rIAAAA==" Status="HK" Type="TKNE" FreeText="3502881674598C2" Carrier="YP" ProviderReservationInfoRef="qJe9kjn3nDKAmVD6tIAAAA=="/> </common_v53_0:BookingTraveler> <common_v53_0:FormOfPayment Key="12R+kjUAuDKAxhg5tIAAAA==" Type="Cash" Reusable="false" ProfileKey="+t+0cF5LRUe49FeEtckM0g=="/> <common_v53_0:Payment Key="12R+kjUAuDKAyhg5tIAAAA==" Type="Itinerary" Amount="KRW741500" FormOfPaymentRef="12R+kjUAuDKAxhg5tIAAAA=="/> <common_v53_0:SupplierLocator SupplierCode="YP" SupplierLocatorCode="****"/> <air:FareCalc>SEL YP TYO 200.94YP SEL 274.02 NUC474.96END ROE1368.504 XT 23300SW9500TK28000YQ</air:FareCalc> <air:Ticket Key="12R+kjUAuDKA5hg5tIAAAA==" TicketNumber="3502881674598" TicketStatus="V"> <air:Coupon Key="12R+kjUAuDKA6hg5tIAAAA==" CouponNumber="1" MarketingCarrier="YP" MarketingFlightNumber="731" Origin="ICN" Destination="NRT" DepartureTime="2025-12-26T08:45:00.000+09:00" StopoverCode="true" BookingClass="P" FareBasis="POWS" NotValidBefore="2025-12-26" NotValidAfter="2025-12-26" Status="V" SegmentGroup="0" MarriageGroup="0"/> <air:Coupon Key="12R+kjUAuDKA7hg5tIAAAA==" CouponNumber="2" MarketingCarrier="YP" MarketingFlightNumber="732" Origin="NRT" Destination="ICN" DepartureTime="2025-12-29T12:30:00.000+09:00" StopoverCode="true" BookingClass="E" FareBasis="EOWS" NotValidBefore="2025-12-29" NotValidAfter="2025-12-29" Status="V" SegmentGroup="1" MarriageGroup="0"/> </air:Ticket> <air:AirPricingInfo Key="nhNBljNDuDKA8Lp0rIAAAA==" TotalPrice="KRW741500" BasePrice="KRW650000" ApproximateTotalPrice="KRW741500" ApproximateBasePrice="KRW650000" Taxes="KRW91500" LatestTicketingTime="2025-12-26T23:59:00.000+09:00" TrueLastDateToTicket="2025-12-26T23:59:00.000+09:00" PricingMethod="Guaranteed" Refundable="true" Exchangeable="true" ETicketability="Yes" PlatingCarrier="YP" ProviderReservationInfoRef="qJe9kjn3nDKAmVD6tIAAAA==" AirPricingInfoGroup="1" Ticketed="true" PricingType="StoredFare" FareCalculationInd="G"> <air:FareInfo Key="nhNBljNDuDKACMp0rIAAAA==" FareBasis="POWS" PassengerTypeCode="ADT" Origin="ICN" Destination="NRT" EffectiveDate="2025-08-28T00:00:00.000+09:00" Amount="NUC200.94" NegotiatedFare="false" NotValidBefore="2025-12-26" NotValidAfter="2025-12-26"> <common_v53_0:Endorsement Value="YP ONLY"/> <air:BaggageAllowance> <air:NumberOfPieces>1</air:NumberOfPieces> </air:BaggageAllowance> <air:Brand BrandID="1350685" Name="PREMIUM ECO STANDARD" Carrier="YP" BrandTier="0003"> <air:Title Type="External">Premium Eco Standard</air:Title> <air:Title Type="Short">PE</air:Title> <air:Text Type="MarketingConsumer">Choose our Premium Economy seats for a service as comfortable as your business needs</air:Text> <air:Text Type="Upsell">Choose our Premium Economy seats for a service as comfortable as your business needs</air:Text> <air:Text Type="MarketingAgent">Choose our Premium Economy seats for a service as comfortable as your business needs</air:Text> <air:Text Type="Strapline">Premium Eco Standard</air:Text> <air:ImageLocation Type="Consumer" ImageWidth="1061" ImageHeight="665">https://cdn.travelport.com/airpremiainc/YP_general_small_523737.png</air:ImageLocation> <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://cdn.travelport.com/airpremiainc/YP_general_small_523735.png</air:ImageLocation> <air:OptionalServices> <air:OptionalService Type="Baggage" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="0FM" Key="qJe9kjn3nDKA1Qi08IAAAA=="> <air:EMD AssociatedItem="Chargeable Baggage"/> </air:OptionalService> <air:OptionalService Type="Baggage" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="0MJ" Key="qJe9kjn3nDKA2Qi08IAAAA==" SecondaryType="Carry On Hand Baggage"> <air:EMD AssociatedItem="Chargeable Baggage"/> </air:OptionalService> <air:OptionalService Type="PreReservedSeatAssignment" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="0B5" Key="qJe9kjn3nDKA3Qi08IAAAA=="> <air:EMD AssociatedItem="Flight"/> </air:OptionalService> <air:OptionalService Type="TravelServices" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="03P" Key="qJe9kjn3nDKA4Qi08IAAAA=="> <air:EMD AssociatedItem="Flight"/> </air:OptionalService> <air:OptionalService Type="TravelServices" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.941+00:00" ServiceSubCode="0G6" Key="qJe9kjn3nDKA5Qi08IAAAA==" SecondaryType="Priority Boarding"> <air:EMD AssociatedItem="Flight"/> </air:OptionalService> </air:OptionalServices> </air:Brand> </air:FareInfo> <air:FareInfo Key="nhNBljNDuDKADMp0rIAAAA==" FareBasis="EOWS" PassengerTypeCode="ADT" Origin="NRT" Destination="ICN" EffectiveDate="2025-08-28T00:00:00.000+09:00" Amount="NUC274.02" NegotiatedFare="false" NotValidBefore="2025-12-29" NotValidAfter="2025-12-29"> <common_v53_0:Endorsement Value="YP ONLY"/> <air:BaggageAllowance> <air:NumberOfPieces>1</air:NumberOfPieces> </air:BaggageAllowance> <air:Brand BrandID="1350687" Name="ECONOMY STANDARD" Carrier="YP" BrandTier="0001"> <air:Title Type="External">Economy Standard</air:Title> <air:Title Type="Short">ES</air:Title> <air:Text Type="MarketingAgent">Economy Standard</air:Text> <air:Text Type="Strapline">Economy Standard</air:Text> <air:Text Type="MarketingConsumer">Economy Standard</air:Text> <air:ImageLocation Type="Agent" ImageWidth="150" ImageHeight="150">https://cdn.travelport.com/airpremiainc/YP_general_small_523734.png</air:ImageLocation> <air:ImageLocation Type="Consumer" ImageWidth="1061" ImageHeight="665">https://cdn.travelport.com/airpremiainc/YP_general_small_523736.png</air:ImageLocation> <air:OptionalServices> <air:OptionalService Type="Baggage" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.972+00:00" ServiceSubCode="0GO" Key="qJe9kjn3nDKA8Qi08IAAAA=="> <air:EMD AssociatedItem="Chargeable Baggage"/> </air:OptionalService> <air:OptionalService Type="Baggage" SupplierCode="YP" CreateDate="2025-08-28T04:20:27.972+00:00" ServiceSubCode="0MJ" Key="qJe9kjn3nDKA9Qi08IAAAA==" SecondaryType="Carry On Hand Baggage"> <air:EMD AssociatedItem="Chargeable Baggage"/> </air:OptionalService> </air:OptionalServices> </air:Brand> </air:FareInfo> <air:BookingInfo BookingCode="P" CabinClass="PremiumEconomy" FareInfoRef="nhNBljNDuDKACMp0rIAAAA=="/> <air:BookingInfo BookingCode="E" CabinClass="PremiumEconomy" FareInfoRef="nhNBljNDuDKADMp0rIAAAA=="/> <air:TaxInfo Category="BP" Amount="KRW24000" Key="qJe9kjn3nDKAuQi08IAAAA=="/> <air:TaxInfo Category="OI" Amount="KRW6700" Key="qJe9kjn3nDKAvQi08IAAAA=="/> <air:TaxInfo Category="SW" Amount="KRW23300" Key="qJe9kjn3nDKAwQi08IAAAA=="/> <air:TaxInfo Category="TK" Amount="KRW9500" Key="qJe9kjn3nDKAxQi08IAAAA=="/> <air:TaxInfo Category="YQ" Amount="KRW28000" Key="qJe9kjn3nDKAyQi08IAAAA=="/> <air:FareCalc>SEL YP TYO 200.94POWS YP SEL 274.02EOWS NUC474.96END ROE1368.504</air:FareCalc> <air:PassengerType Code="ADT" BookingTravelerRef="qJe9kjn3nDKA76c5tIAAAA=="> <air:FareGuaranteeInfo GuaranteeType="Guaranteed"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="qJe9kjn3nDKA+6c5tIAAAA=="> <air:FareGuaranteeInfo GuaranteeType="Guaranteed"/> </air:PassengerType> <common_v53_0:BookingTravelerRef Key="qJe9kjn3nDKA76c5tIAAAA=="/> <common_v53_0:BookingTravelerRef Key="qJe9kjn3nDKA+6c5tIAAAA=="/> <air:ChangePenalty PenaltyApplies="Anytime"> <air:Amount>KRW40000</air:Amount> </air:ChangePenalty> <air:CancelPenalty PenaltyApplies="Anytime"> <air:Amount>KRW90000</air:Amount> </air:CancelPenalty> </air:AirPricingInfo> <air:BaggageAllowances> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="ICN" Destination="NRT" Carrier="YP"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/YP</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>1P</air:Text> <air:Text>BAGGAGE DISCOUNTS MAY APPLY BASED ON FREQUENT FLYER STATUS/ ONLINE CHECKIN/FORM OF PAYMENT/MILITARY/ETC.</air:Text> </air:TextInfo> <air:BagDetails ApplicableBags="1stChecked" BasePrice="KRW0" ApproximateBasePrice="KRW0" TotalPrice="KRW0" ApproximateTotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO70LB/32KG</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>BAGGAGE CHARGES DATA NOT AVAILABLE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="NRT" Destination="ICN" Carrier="YP"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/YP</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>1P</air:Text> <air:Text>BAGGAGE DISCOUNTS MAY APPLY BASED ON FREQUENT FLYER STATUS/ ONLINE CHECKIN/FORM OF PAYMENT/MILITARY/ETC.</air:Text> </air:TextInfo> <air:BagDetails ApplicableBags="1stChecked" BasePrice="KRW0" ApproximateBasePrice="KRW0" TotalPrice="KRW0" ApproximateTotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO70LB/32KG</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>BAGGAGE CHARGES DATA NOT AVAILABLE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:CarryOnAllowanceInfo Origin="ICN" Destination="NRT" Carrier="YP"> <air:TextInfo> <air:Text>2P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="KRW0" TotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO22LB/10KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> <air:CarryOnDetails ApplicableCarryOnBags="2" BasePrice="KRW0" TotalPrice="KRW0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO22LB/10KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> </air:CarryOnAllowanceInfo> <air:CarryOnAllowanceInfo Origin="NRT" Destination="ICN" Carrier="YP"> <air:TextInfo> <air:Text>2P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="JPY0" TotalPrice="JPY0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO22LB/10KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> <air:CarryOnDetails ApplicableCarryOnBags="2" BasePrice="JPY0" TotalPrice="JPY0"> <air:BaggageRestriction> <air:TextInfo> <air:Text>UPTO22LB/10KG AND UPTO45LI/115LCM</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:CarryOnDetails> </air:CarryOnAllowanceInfo> </air:BaggageAllowances> </air:ETR> </air:AirRetrieveDocumentRsp> </SOAP:Body> </SOAP:Envelope> |