Remark : uAPI Soap Call and parsing sample PHP
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 |
<?php /* * uAPI sample communication in php language * This example requires the cURL library to be installed and working. * Please note, in the sample code below, the variable $CREDENTIALS is created by binding your username and password together with a colon e.g. * $auth = base64_encode("Universal API/API1234567:mypassword"); * The variable $TARGETBRANCH should be set to the TargetBranch provided by Travelport. * (C) 2015 Travelport, Inc. * This code is for illustration purposes only. */ $TARGETBRANCH = 'Put your TargetBranch/WAB received in Welcome leter here'; $CREDENTIALS = 'Put your Username received in Welcome letter here:Put your password in Welcome letter here'; $Provider = '1G'; $message = <<<EOM <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:air="http://www.travelport.com/schema/air_v50_0" xmlns:com="http://www.travelport.com/schema/common_v50_0"> <soapenv:Body> <air:LowFareSearchReq TraceId="2021122918322322" TargetBranch="P*******" SolutionResult="true" AuthorizedBy="user" > <com:BillingPointOfSaleInfo OriginApplication="UAPI"/> <air:SearchAirLeg> <air:SearchOrigin> <com:CityOrAirport Code="DEL"/> </air:SearchOrigin> <air:SearchDestination> <com:CityOrAirport Code="BOM"/> </air:SearchDestination> <air:SearchDepTime PreferredTime="2022-05-12"> </air:SearchDepTime> </air:SearchAirLeg> <air:AirSearchModifiers> <air:PreferredProviders> <com:Provider Code="1G" /> </air:PreferredProviders> <air:PermittedCarriers> <com:Carrier Code="AI" /> </air:PermittedCarriers> <air:PreferredCabins> <com:CabinClass Type="Economy" /> </air:PreferredCabins> <air:FlightType NonStopDirects="true" StopDirects="true" SingleOnlineCon="true" DoubleOnlineCon="false" TripleOnlineCon="false" SingleInterlineCon="false" DoubleInterlineCon="false" TripleInterlineCon="false" /> </air:AirSearchModifiers> <com:SearchPassenger Code="ADT"/> <air:AirPricingModifiers ETicketability="Required" FaresIndicator="AllFares"/> </air:LowFareSearchReq> </soapenv:Body> </soapenv:Envelope> EOM; $file = "001-".$Provider."_AirAvailabilityReq.xml"; // file name to save the request xml for test only(if you want to save the request/response) prettyPrint($message,$file);//call function to pretty print xml $auth = base64_encode("$CREDENTIALS"); $soap_do = curl_init("https://apac.universal-api.pp.travelport.com/B2BGateway/connect/uAPI/AirService"); $header = array( "Content-Type: text/xml;charset=UTF-8", "Accept: gzip,deflate", "Cache-Control: no-cache", "Pragma: no-cache", "SOAPAction: \"\"", "Authorization: Basic $auth", "Content-length: ".strlen($message), ); //curl_setopt($soap_do, CURLOPT_CONNECTTIMEOUT, 30); //curl_setopt($soap_do, CURLOPT_TIMEOUT, 30); curl_setopt($soap_do, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($soap_do, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($soap_do, CURLOPT_POST, true ); curl_setopt($soap_do, CURLOPT_POSTFIELDS, $message); curl_setopt($soap_do, CURLOPT_HTTPHEADER, $header); curl_setopt($soap_do, CURLOPT_RETURNTRANSFER, true); $return = curl_exec($soap_do); curl_close($soap_do); $file = "001-".$Provider."_AirAvailabilityRsp.xml"; // file name to save the response xml for test only(if you want to save the request/response) $content = prettyPrint($return,$file); parseOutput($content); header('Content-type: text/xml'); //xml type out echo $return; //outputWriter($file, $return); //print_r(curl_getinfo($soap_do)); //Pretty print XML function prettyPrint($result,$file){ $dom = new DOMDocument; $dom->preserveWhiteSpace = false; $dom->loadXML($result); $dom->formatOutput = true; //call function to write request/response in file outputWriter($file,$dom->saveXML()); return $dom->saveXML(); } //function to write output in a file function outputWriter($file,$content){ file_put_contents($file, $content); // Write request/response and save them in the File } function parseOutput($content){ //parse the Search response to get values to use in detail request $AirAvailabilitySearchRsp = $content; //use this if response is not saved anywhere else use above variable //echo $AirAvailabilitySearchRsp; $xml = simplexml_load_String("$AirAvailabilitySearchRsp", null, null, 'SOAP', true); if($xml) { //echo "Processing! Please wait!"; } else{ trigger_error("Encoding Error!", E_USER_ERROR); } $Results = $xml->children('SOAP',true); foreach($Results->children('SOAP',true) as $fault){ if(strcmp($fault->getName(),'Fault') == 0){ trigger_error("Error occurred request/response processing!", E_USER_ERROR); } } $count = 0; $fileName = "flights.txt"; if(file_exists($fileName)){ file_put_contents($fileName, ""); } foreach($Results->children('air',true) as $nodes){ foreach($nodes->children('air',true) as $hsr){ if(strcmp($hsr->getName(),'AirSegmentList') == 0){ foreach($hsr->children('air',true) as $hp){ if(strcmp($hp->getName(),'AirSegment') == 0){ $count = $count + 1; file_put_contents($fileName,"\r\n"."Air Segment ".$count."\r\n"."\r\n", FILE_APPEND); foreach($hp->attributes() as $a => $b ){ $GLOBALS[$a] = "$b"; //echo "$a"." : "."$b"; file_put_contents($fileName,$a." : ".$b."\r\n", FILE_APPEND); } } } } //break; } } $Token = 'Token'; $TokenKey = 'TokenKey'; $fileName = "tokens.txt"; if(file_exists($fileName)){ file_put_contents($fileName, ""); } foreach($Results->children('air',true) as $nodes){ foreach($nodes->children('air',true) as $hsr){ if(strcmp($hsr->getName(),'HostTokenList') == 0){ foreach($hsr->children('common_v50_0', true) as $ht){ if(strcmp($ht->getName(), 'HostToken') == 0){ $GLOBALS[$Token] = $ht[0]; foreach($ht->attributes() as $a => $b){ if(strcmp($a, 'Key') == 0){ file_put_contents($fileName,$TokenKey.":".$b."\r\n", FILE_APPEND); } } file_put_contents($fileName,$Token.":".$ht[0]."\r\n", FILE_APPEND); } } } } } //echo "\r\n"."Processing Done. Please check results in files."; } ?> |
결과


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 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 |
Air Segment 1 Key : pRvyY+AqWDKAOnOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 887 Origin : DEL Destination : BOM DepartureTime : 2022-05-12T07:00:00.000+05:30 ArrivalTime : 2022-05-12T09:05:00.000+05:30 FlightTime : 125 Distance : 708 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 2 Key : pRvyY+AqWDKAlnOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 665 Origin : DEL Destination : BOM DepartureTime : 2022-05-12T08:00:00.000+05:30 ArrivalTime : 2022-05-12T10:10:00.000+05:30 FlightTime : 130 Distance : 708 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 3 Key : pRvyY+AqWDKAvnOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 805 Origin : DEL Destination : BOM DepartureTime : 2022-05-12T20:00:00.000+05:30 ArrivalTime : 2022-05-12T22:10:00.000+05:30 FlightTime : 130 Distance : 708 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 4 Key : pRvyY+AqWDKA5nOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 678 Origin : DEL Destination : BOM DepartureTime : 2022-05-12T09:00:00.000+05:30 ArrivalTime : 2022-05-12T11:15:00.000+05:30 FlightTime : 135 Distance : 708 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 5 Key : pRvyY+AqWDKADoOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 624 Origin : DEL Destination : BOM DepartureTime : 2022-05-12T19:00:00.000+05:30 ArrivalTime : 2022-05-12T21:15:00.000+05:30 FlightTime : 135 Distance : 708 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 6 Key : pRvyY+AqWDKANoOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 636 Origin : DEL Destination : BOM DepartureTime : 2022-05-12T15:05:00.000+05:30 ArrivalTime : 2022-05-12T18:10:00.000+05:30 FlightTime : 185 Distance : 708 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false NumberOfStops : 1 AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 7 Key : pRvyY+AqWDKAfnOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 441 Origin : DEL Destination : BOM DepartureTime : 2022-05-12T17:50:00.000+05:30 ArrivalTime : 2022-05-12T21:35:00.000+05:30 FlightTime : 225 Distance : 708 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false NumberOfStops : 1 AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 8 Key : pRvyY+AqWDKAZoOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 491 Origin : DEL Destination : JAI DepartureTime : 2022-05-12T12:00:00.000+05:30 ArrivalTime : 2022-05-12T12:55:00.000+05:30 FlightTime : 55 Distance : 145 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 9 Key : pRvyY+AqWDKAboOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 612 Origin : JAI Destination : BOM DepartureTime : 2022-05-12T14:00:00.000+05:30 ArrivalTime : 2022-05-12T15:50:00.000+05:30 FlightTime : 110 Distance : 567 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 10 Key : pRvyY+AqWDKA5oOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 861 Origin : DEL Destination : AMD DepartureTime : 2022-05-12T16:45:00.000+05:30 ArrivalTime : 2022-05-12T18:10:00.000+05:30 FlightTime : 85 Distance : 472 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 11 Key : pRvyY+AqWDKA7oOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 638 Origin : AMD Destination : BOM DepartureTime : 2022-05-12T21:00:00.000+05:30 ArrivalTime : 2022-05-12T22:15:00.000+05:30 FlightTime : 75 Distance : 276 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 12 Key : pRvyY+AqWDKAZpOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 531 Origin : DEL Destination : AMD DepartureTime : 2022-05-12T19:00:00.000+05:30 ArrivalTime : 2022-05-12T21:30:00.000+05:30 FlightTime : 150 Distance : 472 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 13 Key : pRvyY+AqWDKAcpOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 638 Origin : AMD Destination : BOM DepartureTime : 2022-05-13T21:00:00.000+05:30 ArrivalTime : 2022-05-13T22:15:00.000+05:30 FlightTime : 75 Distance : 276 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 14 Key : pRvyY+AqWDKAjpOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 9843 Origin : DEL Destination : JAI DepartureTime : 2022-05-12T07:10:00.000+05:30 ArrivalTime : 2022-05-12T08:10:00.000+05:30 FlightTime : 60 Distance : 145 ETicketability : Yes Equipment : ATR ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 15 Key : pRvyY+AqWDKAvoOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 9643 Origin : DEL Destination : JAI DepartureTime : 2022-05-12T19:40:00.000+05:30 ArrivalTime : 2022-05-12T20:40:00.000+05:30 FlightTime : 60 Distance : 145 ETicketability : Yes Equipment : ATR ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 16 Key : pRvyY+AqWDKAyoOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 612 Origin : JAI Destination : BOM DepartureTime : 2022-05-13T14:00:00.000+05:30 ArrivalTime : 2022-05-13T15:50:00.000+05:30 FlightTime : 110 Distance : 567 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 17 Key : pRvyY+AqWDKAvpOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 839 Origin : DEL Destination : HYD DepartureTime : 2022-05-12T21:30:00.000+05:30 ArrivalTime : 2022-05-12T23:45:00.000+05:30 FlightTime : 135 Distance : 781 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 18 Key : pRvyY+AqWDKAxpOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 620 Origin : HYD Destination : BOM DepartureTime : 2022-05-13T05:30:00.000+05:30 ArrivalTime : 2022-05-13T07:10:00.000+05:30 FlightTime : 100 Distance : 386 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 19 Key : pRvyY+AqWDKABqOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 439 Origin : DEL Destination : MAA DepartureTime : 2022-05-12T05:55:00.000+05:30 ArrivalTime : 2022-05-12T08:55:00.000+05:30 FlightTime : 180 Distance : 1095 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 20 Key : pRvyY+AqWDKADqOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 672 Origin : MAA Destination : BOM DepartureTime : 2022-05-12T15:20:00.000+05:30 ArrivalTime : 2022-05-12T17:10:00.000+05:30 FlightTime : 110 Distance : 644 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 21 Key : pRvyY+AqWDKATqOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 471 Origin : DEL Destination : UDR DepartureTime : 2022-05-12T13:20:00.000+05:30 ArrivalTime : 2022-05-12T14:35:00.000+05:30 FlightTime : 75 Distance : 338 ETicketability : Yes Equipment : 32A ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 22 Key : pRvyY+AqWDKAVqOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 644 Origin : UDR Destination : BOM DepartureTime : 2022-05-12T16:20:00.000+05:30 ArrivalTime : 2022-05-12T17:55:00.000+05:30 FlightTime : 95 Distance : 388 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 23 Key : pRvyY+AqWDKAlqOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 641 Origin : DEL Destination : NAG DepartureTime : 2022-05-12T23:30:00.000+05:30 ArrivalTime : 2022-05-13T01:20:00.000+05:30 FlightTime : 110 Distance : 531 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 24 Key : pRvyY+AqWDKAnqOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 628 Origin : NAG Destination : BOM DepartureTime : 2022-05-13T07:50:00.000+05:30 ArrivalTime : 2022-05-13T09:20:00.000+05:30 FlightTime : 90 Distance : 425 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 25 Key : pRvyY+AqWDKATpOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 9887 Origin : DEL Destination : AMD DepartureTime : 2022-05-12T05:35:00.000+05:30 ArrivalTime : 2022-05-12T07:50:00.000+05:30 FlightTime : 135 Distance : 472 ETicketability : Yes Equipment : ATR ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 26 Key : pRvyY+AqWDKA4qOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 406 Origin : DEL Destination : VNS DepartureTime : 2022-05-12T10:15:00.000+05:30 ArrivalTime : 2022-05-12T11:40:00.000+05:30 FlightTime : 85 Distance : 415 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 27 Key : pRvyY+AqWDKA6qOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 696 Origin : VNS Destination : BOM DepartureTime : 2022-05-12T13:25:00.000+05:30 ArrivalTime : 2022-05-12T15:40:00.000+05:30 FlightTime : 135 Distance : 776 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 28 Key : pRvyY+AqWDKAKrOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 767 Origin : DEL Destination : CCU DepartureTime : 2022-05-12T12:10:00.000+05:30 ArrivalTime : 2022-05-12T14:30:00.000+05:30 FlightTime : 140 Distance : 816 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 29 Key : pRvyY+AqWDKAMrOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 773 Origin : CCU Destination : BOM DepartureTime : 2022-05-12T16:55:00.000+05:30 ArrivalTime : 2022-05-12T20:15:00.000+05:30 FlightTime : 200 Distance : 1035 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 30 Key : pRvyY+AqWDKAfrOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 401 Origin : DEL Destination : CCU DepartureTime : 2022-05-12T06:50:00.000+05:30 ArrivalTime : 2022-05-12T09:00:00.000+05:30 FlightTime : 130 Distance : 816 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 31 Key : pRvyY+AqWDKAnrOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 883 Origin : DEL Destination : GOI DepartureTime : 2022-05-12T22:00:00.000+05:30 ArrivalTime : 2022-05-13T00:40:00.000+05:30 FlightTime : 160 Distance : 928 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 32 Key : pRvyY+AqWDKAprOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 9658 Origin : GOI Destination : BOM DepartureTime : 2022-05-13T20:55:00.000+05:30 ArrivalTime : 2022-05-13T22:35:00.000+05:30 FlightTime : 100 Distance : 257 ETicketability : Yes Equipment : ATR ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 33 Key : pRvyY+AqWDKAFsOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 403 Origin : DEL Destination : RAJ DepartureTime : 2022-05-12T12:50:00.000+05:30 ArrivalTime : 2022-05-12T14:45:00.000+05:30 FlightTime : 115 Distance : 586 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 34 Key : pRvyY+AqWDKAHsOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 656 Origin : RAJ Destination : BOM DepartureTime : 2022-05-12T18:05:00.000+05:30 ArrivalTime : 2022-05-12T19:15:00.000+05:30 FlightTime : 70 Distance : 261 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 35 Key : pRvyY+AqWDKA9rOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 684 Origin : GOI Destination : BOM DepartureTime : 2022-05-13T06:50:00.000+05:30 ArrivalTime : 2022-05-13T08:05:00.000+05:30 FlightTime : 75 Distance : 257 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Cached status used. Polled avail exists OptionalServicesIndicator : false AvailabilitySource : P AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 36 Key : pRvyY+AqWDKAYsOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 451 Origin : DEL Destination : VTZ DepartureTime : 2022-05-12T15:00:00.000+05:30 ArrivalTime : 2022-05-12T17:20:00.000+05:30 FlightTime : 140 Distance : 844 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 37 Key : pRvyY+AqWDKAasOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 653 Origin : VTZ Destination : BOM DepartureTime : 2022-05-12T21:30:00.000+05:30 ArrivalTime : 2022-05-12T23:40:00.000+05:30 FlightTime : 130 Distance : 686 ETicketability : Yes Equipment : 319 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 38 Key : pRvyY+AqWDKAqsOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 479 Origin : DEL Destination : ATQ DepartureTime : 2022-05-12T21:15:00.000+05:30 ArrivalTime : 2022-05-12T22:20:00.000+05:30 FlightTime : 65 Distance : 258 ETicketability : Yes Equipment : 321 ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop Air Segment 39 Key : pRvyY+AqWDKAssOMAAAAAA== Group : 0 Carrier : AI FlightNumber : 650 Origin : ATQ Destination : BOM DepartureTime : 2022-05-13T09:05:00.000+05:30 ArrivalTime : 2022-05-13T11:50:00.000+05:30 FlightTime : 165 Distance : 881 ETicketability : Yes Equipment : 32B ChangeOfPlane : false ParticipantLevel : Secure Sell LinkAvailability : true PolledAvailabilityOption : Polled avail used OptionalServicesIndicator : false AvailabilitySource : S AvailabilityDisplayType : Fare Shop/Optimal Shop |