AirRetrieveDocument
Endpoint : https://apac.universal-api.pp.travelport.com/B2BGateway/connect/uAPI/AirService

Overview:
AirRetrieveDocumentReq 로 발권을 조회 할 수 있습니다.
기본 조회 (아래 2개중 선택)
- AirReservationLocatorCode 로 조회 (전체 조회) (추천)
- TicketNumber 로 조회 (티켓 개별 조회 가능 ) (보조)
AirReservationLocatorCode
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:air="http://www.travelport.com/schema/air_v52_0" xmlns:com="http://www.travelport.com/schema/common_v52_0"> <soap:Body> <air:AirRetrieveDocumentReq TargetBranch="P*******" AuthorizedBy="DEV" RetrieveProviderReservationDetails="true" ProviderCode="1G" TraceId="202410161130_13_511" ProviderLocatorCode="AQHX7Z" UniversalRecordLocatorCode="27FLED" > <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> <!--com:TicketNumber>8863302371159</com:TicketNumber--> <air:AirReservationLocatorCode>AB24K6</air:AirReservationLocatorCode> </air:AirRetrieveDocumentReq> </soap:Body> </soap:Envelope> |
TicketNumber Case1
ProviderLocatorCode, UniversalRecordLocatorCode 추가 : -> Duplicate ticket number 방지
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_v52_0" xmlns:com="http://www.travelport.com/schema/common_v52_0" xmlns:air="http://www.travelport.com/schema/air_v52_0"> <soapenv:Body> <air:AirRetrieveDocumentReq TraceId="202410161130_13_511" AuthorizedBy="DEV" TargetBranch="P*******" ProviderCode="1G" ProviderLocatorCode="AQHX7Z" UniversalRecordLocatorCode="27FLED" RetrieveProviderReservationDetails="true" ReturnPricing="true"> <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> <com:TicketNumber>88063302371158</com:TicketNumber> <com:TicketNumber>88063302371159</com:TicketNumber> <com:TicketNumber>88063302371160</com:TicketNumber> <com:TicketNumber>88063302371161</com:TicketNumber> </air:AirRetrieveDocumentReq> </soapenv:Body> </soapenv:Envelope> |
TicketNumber Case2
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_v52_0" xmlns:com="http://www.travelport.com/schema/common_v52_0" xmlns:air="http://www.travelport.com/schema/air_v52_0"> <soapenv:Body> <air:AirRetrieveDocumentReq TraceId="202410161130_13_511" AuthorizedBy="DEV" TargetBranch="P*******" ProviderCode="1G" RetrieveProviderReservationDetails="true" ReturnPricing="true"> <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> <com:TicketNumber>88063302371158</com:TicketNumber> <com:TicketNumber>88063302371159</com:TicketNumber> <com:TicketNumber>88063302371160</com:TicketNumber> <com:TicketNumber>88063302371161</com:TicketNumber> </air:AirRetrieveDocumentReq> </soapenv:Body> </soapenv:Envelope> |
AirRetrieveDocumentRsp
- CreditCardAuth 가 같으면 Amount 는 카드 결제 총금액으로 노출 (현금도 동일)
- 혼합일 경우 Amount 는 입력한 1인 카드 금액 으로만 노출 됨.
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 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 |
<SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP:Body> <air:AirRetrieveDocumentRsp TraceId="202410161130_13_511" TransactionId="933C947A0A0E7DE50B9C8BE35634D8CF" ResponseTime="590" UniversalRecordLocatorCode="3B2444" xmlns:air="http://www.travelport.com/schema/air_v52_0" xmlns:common_v52_0="http://www.travelport.com/schema/common_v52_0"> <air:ETR Key="wOHEUJu3nDKACi6lImAAAA==" TotalPrice="KRW463600" BasePrice="KRW286200" Taxes="KRW177400" Refundable="false" Exchangeable="false" TourCode="24D2362A" IssuedDate="2024-08-19T00:00:00.000+09:00" ProviderCode="1G" ProviderLocatorCode="8QHX7Z" IATANumber="17399999" PseudoCityCode="04Q" CountryCode="KR" PlatingCarrier="7C"> <air:AirReservationLocatorCode>AB24K6</air:AirReservationLocatorCode> <common_v52_0:AgencyInfo> <common_v52_0:AgentAction ActionType="Created" AgentCode="uAPI8215685328-9999999" BranchCode="P9999999" AgencyCode="S9999999" EventTime="2024-08-18T15:00:00.000+00:00"/> </common_v52_0:AgencyInfo> <common_v52_0:BookingTraveler Key="wOHEUJu3nDKA4F6lImAAAA=="> <common_v52_0:BookingTravelerName First="GILDONG MR" Last="LEE"/> <common_v52_0:SSR Key="wOHEUJu3nDKA5F6lImAAAA==" Status="HK" Type="DOCS" FreeText="P/KR/000004022/KR/0000000/M/19JUN33/LEE/GILDONG -1LEE/GILDONG MR" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> <common_v52_0:SSR Key="wOHEUJu3nDKA6F6lImAAAA==" SegmentRef="wOHEUJu3nDKA3h6lImAAAA==" Status="HK" Type="TKNE" FreeText="8863302371159C1" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> <common_v52_0:SSR Key="wOHEUJu3nDKA7F6lImAAAA==" SegmentRef="wOHEUJu3nDKA5h6lImAAAA==" Status="HK" Type="TKNE" FreeText="8863302371159C2" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> </common_v52_0:BookingTraveler> <common_v52_0:FormOfPayment Key="wOHEUJu3nDKAhj6lImAAAA==" Type="Credit" Reusable="false" ProfileKey="PGwACbjCQEKkulcZY2HA4Q=="> <common_v52_0:CreditCard Type="CA" Number="************4040" ExpDate="2030-02"/> </common_v52_0:FormOfPayment> <common_v52_0:Payment Key="wOHEUJu3nDKAij6lImAAAA==" Type="Itinerary" Amount="KRW458100" FormOfPaymentRef="wOHEUJu3nDKAhj6lImAAAA=="/> <common_v52_0:CreditCardAuth PaymentRef="wOHEUJu3nDKAij6lImAAAA==" Number="************4040" Amount="KRW458100" AuthCode="006120" AuthResultCode="approved" FormOfPaymentRef="wOHEUJu3nDKAhj6lImAAAA=="/> <common_v52_0:SupplierLocator SupplierCode="7C" SupplierLocatorCode="CB4C3A"/> <air:FareCalc>PUS 7C SIN 89.78 7C PUS 117.05 NUC206.83END ROE1383.26914 XT 8300OP47900SG90000YQ</air:FareCalc> <air:Ticket Key="wOHEUJu3nDKAqi6lImAAAA==" TicketNumber="8863302371159" TicketStatus="N"> <air:Coupon Key="wOHEUJu3nDKAri6lImAAAA==" CouponNumber="1" MarketingCarrier="7C" MarketingFlightNumber="4055" Origin="PUS" Destination="SIN" DepartureTime="2024-10-24T18:20:00.000+09:00" StopoverCode="true" BookingClass="L" FareBasis="LV3OKR" NotValidBefore="2024-10-24" NotValidAfter="2024-10-24" Status="O" SegmentGroup="0" MarriageGroup="0"/> <air:Coupon Key="wOHEUJu3nDKAsi6lImAAAA==" CouponNumber="2" MarketingCarrier="7C" MarketingFlightNumber="4056" Origin="SIN" Destination="PUS" DepartureTime="2024-10-29T00:25:00.000+08:00" StopoverCode="true" BookingClass="S" FareBasis="SV3OKR" NotValidBefore="2024-10-29" NotValidAfter="2024-10-29" Status="O" SegmentGroup="1" MarriageGroup="0"/> <air:TourCode Value="24D2362A"/> </air:Ticket> <air:AirPricingInfo Key="wOHEUJu3nDKATu5lImAAAA==" TotalPrice="KRW463600" BasePrice="KRW286200" ApproximateTotalPrice="KRW463600" ApproximateBasePrice="KRW286200" Taxes="KRW177400" LatestTicketingTime="2024-08-25T23:59:00.000+09:00" TrueLastDateToTicket="2024-08-25T23:59:00.000+09:00" PricingMethod="AutoUsingPrivateFare" ETicketability="Yes" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA==" AirPricingInfoGroup="1" Ticketed="true" PricingType="StoredFare" FareCalculationInd="P"> <air:FareInfo Key="wOHEUJu3nDKAVu5lImAAAA==" FareBasis="LV3OKR" PassengerTypeCode="ADT" Origin="PUS" Destination="SIN" EffectiveDate="2024-08-19T00:00:00.000+09:00" NegotiatedFare="false" NotValidBefore="2024-10-24" NotValidAfter="2024-10-24"> <air:ContractCode Code="7I02" ProviderCode="1G"/> <common_v52_0:Endorsement Value="NON-ENDORSABLE"/> <common_v52_0:Endorsement Value="VALID ON 7C ONLY"/> <air:BaggageAllowance> <air:MaxWeight Value="15" Unit="Kilograms"/> </air:BaggageAllowance> </air:FareInfo> <air:FareInfo Key="wOHEUJu3nDKAZu5lImAAAA==" FareBasis="SV3OKR" PassengerTypeCode="ADT" Origin="SIN" Destination="PUS" EffectiveDate="2024-08-19T00:00:00.000+09:00" NegotiatedFare="false" NotValidBefore="2024-10-29" NotValidAfter="2024-10-29"> <air:ContractCode Code="7I02" ProviderCode="1G"/> <common_v52_0:Endorsement Value="NON-ENDORSABLE"/> <common_v52_0:Endorsement Value="VALID ON 7C ONLY"/> <air:BaggageAllowance> <air:MaxWeight Value="15" Unit="Kilograms"/> </air:BaggageAllowance> </air:FareInfo> <air:BookingInfo BookingCode="L" CabinClass="Economy" FareInfoRef="wOHEUJu3nDKAVu5lImAAAA=="/> <air:BookingInfo BookingCode="S" CabinClass="Economy" FareInfoRef="wOHEUJu3nDKAZu5lImAAAA=="/> <air:TaxInfo Category="BP" Amount="KRW20000" Key="sjEEUJl3nDKAGtyhKmAAAA=="/> <air:TaxInfo Category="L7" Amount="KRW11200" Key="sjEEUJl3nDKAHtyhKmAAAA=="/> <air:TaxInfo Category="OP" Amount="KRW8300" Key="sjEEUJl3nDKAItyhKmAAAA=="/> <air:TaxInfo Category="SG" Amount="KRW47900" Key="sjEEUJl3nDKAJtyhKmAAAA=="/> <air:TaxInfo Category="YQ" Amount="KRW90000" Key="sjEEUJl3nDKAKtyhKmAAAA=="/> <air:FareCalc>PUS 7C SIN 89.78LV3OKR 7C PUS 117.05SV3OKR NUC206.83END ROE1383.26914</air:FareCalc> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKAeF6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKA4F6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKA8F6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKAnf6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKAeF6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKA4F6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKA8F6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKAnf6lImAAAA=="/> </air:AirPricingInfo> <air:BaggageAllowances> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="PUS" Destination="SIN" Carrier="7C"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/7C</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>15K</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"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="SIN" Destination="PUS" Carrier="7C"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/7C</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>15K</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"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:CarryOnAllowanceInfo Origin="PUS" Destination="SIN" Carrier="7C"> <air:TextInfo> <air:Text>1P</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:CarryOnAllowanceInfo> <air:CarryOnAllowanceInfo Origin="SIN" Destination="PUS" Carrier="7C"> <air:TextInfo> <air:Text>1P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="SGD0.00" TotalPrice="SGD0.00"> <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="wOHEUJu3nDKAti6lImAAAA==" TotalPrice="KRW463600" BasePrice="KRW286200" Taxes="KRW177400" Refundable="false" Exchangeable="false" TourCode="24D2362A" IssuedDate="2024-08-19T00:00:00.000+09:00" ProviderCode="1G" ProviderLocatorCode="AQHX7Z" IATANumber="17399999" PseudoCityCode="04Q" CountryCode="KR" PlatingCarrier="7C"> <air:AirReservationLocatorCode>AB24K6</air:AirReservationLocatorCode> <common_v52_0:AgencyInfo> <common_v52_0:AgentAction ActionType="Created" AgentCode="uAPI8215685328-9999999" BranchCode="P9999999" AgencyCode="S9999999" EventTime="2024-08-18T15:00:00.000+00:00"/> </common_v52_0:AgencyInfo> <common_v52_0:BookingTraveler Key="wOHEUJu3nDKAeF6lImAAAA=="> <common_v52_0:BookingTravelerName First="JIHYUN MS" Last="AHN"/> <common_v52_0:PhoneNumber Key="wOHEUJu3nDKAfF6lImAAAA==" Type="Mobile" Location="SEL" Number="01022220222 AHN/JIHYUN"> <common_v52_0:ProviderReservationInfoRef Key="wOHEUJu3nDKACq1lImAAAA=="/> </common_v52_0:PhoneNumber> <common_v52_0:PhoneNumber Key="wOHEUJu3nDKAgF6lImAAAA==" Type="Email" Location="SEL" Number="dfdfdf3@korea.com"> <common_v52_0:ProviderReservationInfoRef Key="wOHEUJu3nDKACq1lImAAAA=="/> </common_v52_0:PhoneNumber> <common_v52_0:SSR Key="wOHEUJu3nDKAhF6lImAAAA==" Status="HK" Type="DOCS" FreeText="P/KR/000001107/KR/0000000/F/01NOV27/AHN/JIHYUN -1AHN/JIHYUN MS" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> <common_v52_0:SSR Key="wOHEUJu3nDKAiF6lImAAAA==" SegmentRef="wOHEUJu3nDKA3h6lImAAAA==" Status="HK" Type="TKNE" FreeText="8863302371158C1" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> <common_v52_0:SSR Key="wOHEUJu3nDKA3F6lImAAAA==" SegmentRef="wOHEUJu3nDKA5h6lImAAAA==" Status="HK" Type="TKNE" FreeText="8863302371158C2" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> </common_v52_0:BookingTraveler> <common_v52_0:FormOfPayment Key="wOHEUJu3nDKAjj6lImAAAA==" Type="Credit" Reusable="false" ProfileKey="R2z3q8GOSjmjR1nd6rWFZQ=="> <common_v52_0:CreditCard Type="CA" Number="************4040" ExpDate="2030-02"/> </common_v52_0:FormOfPayment> <common_v52_0:Payment Key="wOHEUJu3nDKAkj6lImAAAA==" Type="Itinerary" Amount="KRW458100" FormOfPaymentRef="wOHEUJu3nDKAjj6lImAAAA=="/> <common_v52_0:CreditCardAuth PaymentRef="wOHEUJu3nDKAkj6lImAAAA==" Number="************4040" Amount="KRW458100" AuthCode="006120" AuthResultCode="approved" FormOfPaymentRef="wOHEUJu3nDKAjj6lImAAAA=="/> <common_v52_0:SupplierLocator SupplierCode="7C" SupplierLocatorCode="CB4C3A"/> <air:FareCalc>PUS 7C SIN 89.78 7C PUS 117.05 NUC206.83END ROE1383.26914 XT 8300OP47900SG90000YQ</air:FareCalc> <air:Ticket Key="wOHEUJu3nDKAxi6lImAAAA==" TicketNumber="8863302371158" TicketStatus="N"> <air:Coupon Key="wOHEUJu3nDKAyi6lImAAAA==" CouponNumber="1" MarketingCarrier="7C" MarketingFlightNumber="4055" Origin="PUS" Destination="SIN" DepartureTime="2024-10-24T18:20:00.000+09:00" StopoverCode="true" BookingClass="L" FareBasis="LV3OKR" NotValidBefore="2024-10-24" NotValidAfter="2024-10-24" Status="O" SegmentGroup="0" MarriageGroup="0"/> <air:Coupon Key="wOHEUJu3nDKAzi6lImAAAA==" CouponNumber="2" MarketingCarrier="7C" MarketingFlightNumber="4056" Origin="SIN" Destination="PUS" DepartureTime="2024-10-29T00:25:00.000+08:00" StopoverCode="true" BookingClass="S" FareBasis="SV3OKR" NotValidBefore="2024-10-29" NotValidAfter="2024-10-29" Status="O" SegmentGroup="1" MarriageGroup="0"/> <air:TourCode Value="24D2362A"/> </air:Ticket> <air:AirPricingInfo Key="wOHEUJu3nDKATu5lImAAAA==" TotalPrice="KRW463600" BasePrice="KRW286200" ApproximateTotalPrice="KRW463600" ApproximateBasePrice="KRW286200" Taxes="KRW177400" LatestTicketingTime="2024-08-25T23:59:00.000+09:00" TrueLastDateToTicket="2024-08-25T23:59:00.000+09:00" PricingMethod="AutoUsingPrivateFare" ETicketability="Yes" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA==" AirPricingInfoGroup="1" Ticketed="true" PricingType="StoredFare" FareCalculationInd="P"> <air:FareInfo Key="wOHEUJu3nDKAVu5lImAAAA==" FareBasis="LV3OKR" PassengerTypeCode="ADT" Origin="PUS" Destination="SIN" EffectiveDate="2024-08-19T00:00:00.000+09:00" NegotiatedFare="false" NotValidBefore="2024-10-24" NotValidAfter="2024-10-24"> <air:ContractCode Code="7I02" ProviderCode="1G"/> <common_v52_0:Endorsement Value="NON-ENDORSABLE"/> <common_v52_0:Endorsement Value="VALID ON 7C ONLY"/> <air:BaggageAllowance> <air:MaxWeight Value="15" Unit="Kilograms"/> </air:BaggageAllowance> </air:FareInfo> <air:FareInfo Key="wOHEUJu3nDKAZu5lImAAAA==" FareBasis="SV3OKR" PassengerTypeCode="ADT" Origin="SIN" Destination="PUS" EffectiveDate="2024-08-19T00:00:00.000+09:00" NegotiatedFare="false" NotValidBefore="2024-10-29" NotValidAfter="2024-10-29"> <air:ContractCode Code="7I02" ProviderCode="1G"/> <common_v52_0:Endorsement Value="NON-ENDORSABLE"/> <common_v52_0:Endorsement Value="VALID ON 7C ONLY"/> <air:BaggageAllowance> <air:MaxWeight Value="15" Unit="Kilograms"/> </air:BaggageAllowance> </air:FareInfo> <air:BookingInfo BookingCode="L" CabinClass="Economy" FareInfoRef="wOHEUJu3nDKAVu5lImAAAA=="/> <air:BookingInfo BookingCode="S" CabinClass="Economy" FareInfoRef="wOHEUJu3nDKAZu5lImAAAA=="/> <air:TaxInfo Category="BP" Amount="KRW20000" Key="sjEEUJl3nDKAbtyhKmAAAA=="/> <air:TaxInfo Category="L7" Amount="KRW11200" Key="sjEEUJl3nDKActyhKmAAAA=="/> <air:TaxInfo Category="OP" Amount="KRW8300" Key="sjEEUJl3nDKAdtyhKmAAAA=="/> <air:TaxInfo Category="SG" Amount="KRW47900" Key="sjEEUJl3nDKAetyhKmAAAA=="/> <air:TaxInfo Category="YQ" Amount="KRW90000" Key="sjEEUJl3nDKAftyhKmAAAA=="/> <air:FareCalc>PUS 7C SIN 89.78LV3OKR 7C PUS 117.05SV3OKR NUC206.83END ROE1383.26914</air:FareCalc> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKAeF6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKA4F6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKA8F6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKAnf6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKAeF6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKA4F6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKA8F6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKAnf6lImAAAA=="/> </air:AirPricingInfo> <air:BaggageAllowances> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="PUS" Destination="SIN" Carrier="7C"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/7C</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>15K</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"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="SIN" Destination="PUS" Carrier="7C"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/7C</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>15K</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"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:CarryOnAllowanceInfo Origin="PUS" Destination="SIN" Carrier="7C"> <air:TextInfo> <air:Text>1P</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:CarryOnAllowanceInfo> <air:CarryOnAllowanceInfo Origin="SIN" Destination="PUS" Carrier="7C"> <air:TextInfo> <air:Text>1P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="SGD0.00" TotalPrice="SGD0.00"> <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="wOHEUJu3nDKA0i6lImAAAA==" TotalPrice="KRW463600" BasePrice="KRW286200" Taxes="KRW177400" Refundable="false" Exchangeable="false" TourCode="24D2362A" IssuedDate="2024-08-19T00:00:00.000+09:00" ProviderCode="1G" ProviderLocatorCode="AQHX7Z" IATANumber="17399999" PseudoCityCode="04Q" CountryCode="KR" PlatingCarrier="7C"> <air:AirReservationLocatorCode>AB24K6</air:AirReservationLocatorCode> <common_v52_0:AgencyInfo> <common_v52_0:AgentAction ActionType="Created" AgentCode="uAPI8215685328-9999999" BranchCode="P9999999" AgencyCode="S9999999" EventTime="2024-08-18T15:00:00.000+00:00"/> </common_v52_0:AgencyInfo> <common_v52_0:BookingTraveler Key="wOHEUJu3nDKAnf6lImAAAA=="> <common_v52_0:BookingTravelerName First="DONGJUN MR" Last="AHN"/> <common_v52_0:SSR Key="wOHEUJu3nDKAwf6lImAAAA==" Status="HK" Type="DOCS" FreeText="P/KR/000006365/KR/0000000/M/21AUG34/AHN/DONGJUN -1AHN/DONGJUN MR" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> <common_v52_0:SSR Key="wOHEUJu3nDKAtg6lImAAAA==" SegmentRef="wOHEUJu3nDKA3h6lImAAAA==" Status="HK" Type="TKNE" FreeText="8863302371161C1" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> <common_v52_0:SSR Key="wOHEUJu3nDKAWh6lImAAAA==" SegmentRef="wOHEUJu3nDKA5h6lImAAAA==" Status="HK" Type="TKNE" FreeText="8863302371161C2" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> </common_v52_0:BookingTraveler> <common_v52_0:FormOfPayment Key="wOHEUJu3nDKAlj6lImAAAA==" Type="Credit" Reusable="false" ProfileKey="vNCot2rtTfu8wLoeXISgAQ=="> <common_v52_0:CreditCard Type="CA" Number="************4040" ExpDate="2030-02"/> </common_v52_0:FormOfPayment> <common_v52_0:Payment Key="wOHEUJu3nDKAmj6lImAAAA==" Type="Itinerary" Amount="KRW458100" FormOfPaymentRef="wOHEUJu3nDKAlj6lImAAAA=="/> <common_v52_0:CreditCardAuth PaymentRef="wOHEUJu3nDKAmj6lImAAAA==" Number="************4040" Amount="KRW458100" AuthCode="006120" AuthResultCode="approved" FormOfPaymentRef="wOHEUJu3nDKAlj6lImAAAA=="/> <common_v52_0:SupplierLocator SupplierCode="7C" SupplierLocatorCode="CB4C3A"/> <air:FareCalc>PUS 7C SIN 89.78 7C PUS 117.05 NUC206.83END ROE1383.26914 XT 8300OP47900SG90000YQ</air:FareCalc> <air:Ticket Key="wOHEUJu3nDKA4i6lImAAAA==" TicketNumber="8863302371161" TicketStatus="N"> <air:Coupon Key="wOHEUJu3nDKA5i6lImAAAA==" CouponNumber="1" MarketingCarrier="7C" MarketingFlightNumber="4055" Origin="PUS" Destination="SIN" DepartureTime="2024-10-24T18:20:00.000+09:00" StopoverCode="true" BookingClass="L" FareBasis="LV3OKR" NotValidBefore="2024-10-24" NotValidAfter="2024-10-24" Status="O" SegmentGroup="0" MarriageGroup="0"/> <air:Coupon Key="wOHEUJu3nDKA6i6lImAAAA==" CouponNumber="2" MarketingCarrier="7C" MarketingFlightNumber="4056" Origin="SIN" Destination="PUS" DepartureTime="2024-10-29T00:25:00.000+08:00" StopoverCode="true" BookingClass="S" FareBasis="SV3OKR" NotValidBefore="2024-10-29" NotValidAfter="2024-10-29" Status="O" SegmentGroup="1" MarriageGroup="0"/> <air:TourCode Value="24D2362A"/> </air:Ticket> <air:AirPricingInfo Key="wOHEUJu3nDKATu5lImAAAA==" TotalPrice="KRW463600" BasePrice="KRW286200" ApproximateTotalPrice="KRW463600" ApproximateBasePrice="KRW286200" Taxes="KRW177400" LatestTicketingTime="2024-08-25T23:59:00.000+09:00" TrueLastDateToTicket="2024-08-25T23:59:00.000+09:00" PricingMethod="AutoUsingPrivateFare" ETicketability="Yes" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA==" AirPricingInfoGroup="1" Ticketed="true" PricingType="StoredFare" FareCalculationInd="P"> <air:FareInfo Key="wOHEUJu3nDKAVu5lImAAAA==" FareBasis="LV3OKR" PassengerTypeCode="ADT" Origin="PUS" Destination="SIN" EffectiveDate="2024-08-19T00:00:00.000+09:00" NegotiatedFare="false" NotValidBefore="2024-10-24" NotValidAfter="2024-10-24"> <air:ContractCode Code="7I02" ProviderCode="1G"/> <common_v52_0:Endorsement Value="NON-ENDORSABLE"/> <common_v52_0:Endorsement Value="VALID ON 7C ONLY"/> <air:BaggageAllowance> <air:MaxWeight Value="15" Unit="Kilograms"/> </air:BaggageAllowance> </air:FareInfo> <air:FareInfo Key="wOHEUJu3nDKAZu5lImAAAA==" FareBasis="SV3OKR" PassengerTypeCode="ADT" Origin="SIN" Destination="PUS" EffectiveDate="2024-08-19T00:00:00.000+09:00" NegotiatedFare="false" NotValidBefore="2024-10-29" NotValidAfter="2024-10-29"> <air:ContractCode Code="7I02" ProviderCode="1G"/> <common_v52_0:Endorsement Value="NON-ENDORSABLE"/> <common_v52_0:Endorsement Value="VALID ON 7C ONLY"/> <air:BaggageAllowance> <air:MaxWeight Value="15" Unit="Kilograms"/> </air:BaggageAllowance> </air:FareInfo> <air:BookingInfo BookingCode="L" CabinClass="Economy" FareInfoRef="wOHEUJu3nDKAVu5lImAAAA=="/> <air:BookingInfo BookingCode="S" CabinClass="Economy" FareInfoRef="wOHEUJu3nDKAZu5lImAAAA=="/> <air:TaxInfo Category="BP" Amount="KRW20000" Key="sjEEUJl3nDKAqtyhKmAAAA=="/> <air:TaxInfo Category="L7" Amount="KRW11200" Key="sjEEUJl3nDKArtyhKmAAAA=="/> <air:TaxInfo Category="OP" Amount="KRW8300" Key="sjEEUJl3nDKAstyhKmAAAA=="/> <air:TaxInfo Category="SG" Amount="KRW47900" Key="sjEEUJl3nDKAttyhKmAAAA=="/> <air:TaxInfo Category="YQ" Amount="KRW90000" Key="sjEEUJl3nDKAutyhKmAAAA=="/> <air:FareCalc>PUS 7C SIN 89.78LV3OKR 7C PUS 117.05SV3OKR NUC206.83END ROE1383.26914</air:FareCalc> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKAeF6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKA4F6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKA8F6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKAnf6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKAeF6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKA4F6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKA8F6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKAnf6lImAAAA=="/> </air:AirPricingInfo> <air:BaggageAllowances> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="PUS" Destination="SIN" Carrier="7C"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/7C</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>15K</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"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="SIN" Destination="PUS" Carrier="7C"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/7C</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>15K</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"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:CarryOnAllowanceInfo Origin="PUS" Destination="SIN" Carrier="7C"> <air:TextInfo> <air:Text>1P</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:CarryOnAllowanceInfo> <air:CarryOnAllowanceInfo Origin="SIN" Destination="PUS" Carrier="7C"> <air:TextInfo> <air:Text>1P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="SGD0.00" TotalPrice="SGD0.00"> <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="wOHEUJu3nDKA7h6lImAAAA==" TotalPrice="KRW463600" BasePrice="KRW286200" Taxes="KRW177400" Refundable="false" Exchangeable="false" TourCode="24D2362A" IssuedDate="2024-08-19T00:00:00.000+09:00" ProviderCode="1G" ProviderLocatorCode="AQHX7Z" IATANumber="17399999" PseudoCityCode="04Q" CountryCode="KR" PlatingCarrier="7C"> <air:AirReservationLocatorCode>AB24K6</air:AirReservationLocatorCode> <common_v52_0:AgencyInfo> <common_v52_0:AgentAction ActionType="Created" AgentCode="uAPI8215685328-9999999" BranchCode="P9999999" AgencyCode="S9999999" EventTime="2024-08-18T15:00:00.000+00:00"/> </common_v52_0:AgencyInfo> <common_v52_0:BookingTraveler Key="wOHEUJu3nDKA8F6lImAAAA=="> <common_v52_0:BookingTravelerName First="HEESUK MS" Last="KANG"/> <common_v52_0:SSR Key="wOHEUJu3nDKA3K6lImAAAA==" Status="HK" Type="DOCS" FreeText="P/KR/000002583/KR/0000000/F/19JUN33/KANG/HEESUK -1KANG/HEESUK MS" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> <common_v52_0:SSR Key="wOHEUJu3nDKAEL6lImAAAA==" SegmentRef="wOHEUJu3nDKA3h6lImAAAA==" Status="HK" Type="TKNE" FreeText="8863302371160C1" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> <common_v52_0:SSR Key="wOHEUJu3nDKA8O6lImAAAA==" SegmentRef="wOHEUJu3nDKA5h6lImAAAA==" Status="HK" Type="TKNE" FreeText="8863302371160C2" Carrier="7C" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA=="/> </common_v52_0:BookingTraveler> <common_v52_0:FormOfPayment Key="wOHEUJu3nDKAfj6lImAAAA==" Type="Credit" Reusable="false" ProfileKey="lqP0IyTvRnG10jyym3Z+zg=="> <common_v52_0:CreditCard Type="CA" Number="************4040" ExpDate="2030-02"/> </common_v52_0:FormOfPayment> <common_v52_0:Payment Key="wOHEUJu3nDKAgj6lImAAAA==" Type="Itinerary" Amount="KRW458100" FormOfPaymentRef="wOHEUJu3nDKAfj6lImAAAA=="/> <common_v52_0:CreditCardAuth PaymentRef="wOHEUJu3nDKAgj6lImAAAA==" Number="************4040" Amount="KRW458100" AuthCode="006120" AuthResultCode="approved" FormOfPaymentRef="wOHEUJu3nDKAfj6lImAAAA=="/> <common_v52_0:SupplierLocator SupplierCode="7C" SupplierLocatorCode="CB4C3A"/> <air:FareCalc>PUS 7C SIN 89.78 7C PUS 117.05 NUC206.83END ROE1383.26914 XT 8300OP47900SG90000YQ</air:FareCalc> <air:Ticket Key="wOHEUJu3nDKA/h6lImAAAA==" TicketNumber="8863302371160" TicketStatus="N"> <air:Coupon Key="wOHEUJu3nDKAAi6lImAAAA==" CouponNumber="1" MarketingCarrier="7C" MarketingFlightNumber="4055" Origin="PUS" Destination="SIN" DepartureTime="2024-10-24T18:20:00.000+09:00" StopoverCode="true" BookingClass="L" FareBasis="LV3OKR" NotValidBefore="2024-10-24" NotValidAfter="2024-10-24" Status="O" SegmentGroup="0" MarriageGroup="0"/> <air:Coupon Key="wOHEUJu3nDKABi6lImAAAA==" CouponNumber="2" MarketingCarrier="7C" MarketingFlightNumber="4056" Origin="SIN" Destination="PUS" DepartureTime="2024-10-29T00:25:00.000+08:00" StopoverCode="true" BookingClass="S" FareBasis="SV3OKR" NotValidBefore="2024-10-29" NotValidAfter="2024-10-29" Status="O" SegmentGroup="1" MarriageGroup="0"/> <air:TourCode Value="24D2362A"/> </air:Ticket> <air:AirPricingInfo Key="wOHEUJu3nDKATu5lImAAAA==" TotalPrice="KRW463600" BasePrice="KRW286200" ApproximateTotalPrice="KRW463600" ApproximateBasePrice="KRW286200" Taxes="KRW177400" LatestTicketingTime="2024-08-25T23:59:00.000+09:00" TrueLastDateToTicket="2024-08-25T23:59:00.000+09:00" PricingMethod="AutoUsingPrivateFare" ETicketability="Yes" ProviderReservationInfoRef="wOHEUJu3nDKACq1lImAAAA==" AirPricingInfoGroup="1" Ticketed="true" PricingType="StoredFare" FareCalculationInd="P"> <air:FareInfo Key="wOHEUJu3nDKAVu5lImAAAA==" FareBasis="LV3OKR" PassengerTypeCode="ADT" Origin="PUS" Destination="SIN" EffectiveDate="2024-08-19T00:00:00.000+09:00" NegotiatedFare="false" NotValidBefore="2024-10-24" NotValidAfter="2024-10-24"> <air:ContractCode Code="7I02" ProviderCode="1G"/> <common_v52_0:Endorsement Value="NON-ENDORSABLE"/> <common_v52_0:Endorsement Value="VALID ON 7C ONLY"/> <air:BaggageAllowance> <air:MaxWeight Value="15" Unit="Kilograms"/> </air:BaggageAllowance> </air:FareInfo> <air:FareInfo Key="wOHEUJu3nDKAZu5lImAAAA==" FareBasis="SV3OKR" PassengerTypeCode="ADT" Origin="SIN" Destination="PUS" EffectiveDate="2024-08-19T00:00:00.000+09:00" NegotiatedFare="false" NotValidBefore="2024-10-29" NotValidAfter="2024-10-29"> <air:ContractCode Code="7I02" ProviderCode="1G"/> <common_v52_0:Endorsement Value="NON-ENDORSABLE"/> <common_v52_0:Endorsement Value="VALID ON 7C ONLY"/> <air:BaggageAllowance> <air:MaxWeight Value="15" Unit="Kilograms"/> </air:BaggageAllowance> </air:FareInfo> <air:BookingInfo BookingCode="L" CabinClass="Economy" FareInfoRef="wOHEUJu3nDKAVu5lImAAAA=="/> <air:BookingInfo BookingCode="S" CabinClass="Economy" FareInfoRef="wOHEUJu3nDKAZu5lImAAAA=="/> <air:TaxInfo Category="BP" Amount="KRW20000" Key="sjEEUJl3nDKA5tyhKmAAAA=="/> <air:TaxInfo Category="L7" Amount="KRW11200" Key="sjEEUJl3nDKA6tyhKmAAAA=="/> <air:TaxInfo Category="OP" Amount="KRW8300" Key="sjEEUJl3nDKA7tyhKmAAAA=="/> <air:TaxInfo Category="SG" Amount="KRW47900" Key="sjEEUJl3nDKA8tyhKmAAAA=="/> <air:TaxInfo Category="YQ" Amount="KRW90000" Key="sjEEUJl3nDKA9tyhKmAAAA=="/> <air:FareCalc>PUS 7C SIN 89.78LV3OKR 7C PUS 117.05SV3OKR NUC206.83END ROE1383.26914</air:FareCalc> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKAeF6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKA4F6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKA8F6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <air:PassengerType Code="ADT" BookingTravelerRef="wOHEUJu3nDKAnf6lImAAAA=="> <air:FareGuaranteeInfo GuaranteeType="AutoUsingPrivateFare"/> </air:PassengerType> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKAeF6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKA4F6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKA8F6lImAAAA=="/> <common_v52_0:BookingTravelerRef Key="wOHEUJu3nDKAnf6lImAAAA=="/> </air:AirPricingInfo> <air:BaggageAllowances> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="PUS" Destination="SIN" Carrier="7C"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/7C</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>15K</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"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:BaggageAllowanceInfo TravelerType="ADT" Origin="SIN" Destination="PUS" Carrier="7C"> <air:URLInfo> <air:URL>VIEWTRIP.TRAVELPORT.COM/BAGGAGEPOLICY/7C</air:URL> </air:URLInfo> <air:TextInfo> <air:Text>15K</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"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> <air:BagDetails ApplicableBags="2ndChecked"> <air:BaggageRestriction> <air:TextInfo> <air:Text>CHGS MAY APPLY IF BAGS EXCEED TTL WT ALLOWANCE</air:Text> </air:TextInfo> </air:BaggageRestriction> </air:BagDetails> </air:BaggageAllowanceInfo> <air:CarryOnAllowanceInfo Origin="PUS" Destination="SIN" Carrier="7C"> <air:TextInfo> <air:Text>1P</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:CarryOnAllowanceInfo> <air:CarryOnAllowanceInfo Origin="SIN" Destination="PUS" Carrier="7C"> <air:TextInfo> <air:Text>1P</air:Text> </air:TextInfo> <air:CarryOnDetails ApplicableCarryOnBags="1" BasePrice="SGD0.00" TotalPrice="SGD0.00"> <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> |