| Server IP : 103.234.187.230 / Your IP : 216.73.216.216 Web Server : Apache System : Linux lserver42043-ind.megavelocity.net 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/api.hellogtx.com/apihellogtx/goflysmartapi/ |
Upload File : |
from django.urls import include, path
from goflysmartapi import views
urlpatterns = [
path("login/", views.Login.as_view()),
path("search/", views.SearchResults.as_view()),
path("baggage-information/", views.BaggageInformation.as_view()),
path("available-sectors/", views.AvailableSectors.as_view()),
path("go-fly-smart-booking/", views.GoFlySmartBooking.as_view()),
path("go-fly-smart-check-availability/", views.GoFlySmartCheckAvailability.as_view()),
path("go-fly-smart-account-balance/", views.GoFlySmartAccountsBalance.as_view()),
path("ticket-details/", views.TicketDetails.as_view()),
path("air-iq-ticket-details/", views.AirIqTicketDetail.as_view()),
path("travel-z-gear-details/", views.TravelZGearDetail.as_view()),
path("travel-z-gear-pay-wallet/", views.TravelZGearPayWalletDetail.as_view()),
path("air-iq-book/", views.AirIqBook.as_view()),
path("go-fly-smart-available-dates/", views.AvailableDates.as_view()),
path("travel-z-gear-book/", views.TravelZGear.as_view()),
path("fare-boutique-destination/", views.FareBoutiqueDestination.as_view()),
path("fare-boutique-arrival/", views.FareBoutiqueArrival.as_view()),
path("fare-boutique-onward-dates/", views.FareBoutiqueOnwardDates.as_view()),
path("fare-boutique-search/", views.FareBoutiqueSearch.as_view()),
path("fare-boutique-fare-quote/", views.FareBoutiqueFareQuote.as_view()),
path("fare-boutique-booking/", views.FareBoutiqueBooking.as_view()),
path("fare-boutique-booking-detail/", views.FareBoutiqueBookingDetail.as_view()),
path("fare-boutique-get-sector/", views.FareBoutiqueGetSector.as_view()),
path("check-availability-book-n-travel", views.checkAvailabilityBookNTravel.as_view()),
path("booking-request-bnt", views.BookingRequestBookNTravel.as_view()),
path("sector", views.GoFlySmartSearchSector.as_view())
]