Skip to content

Travel agents and airlines may check here if taxi shares are available for the passengers of a specific flight

Notifications You must be signed in to change notification settings

Richard2012/Taxi-Share-Client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Taxi Share Banner

Taxi-Share-Client

Are you a travel agent or airline? This application will allow you to check if 🚕 taxi shares are available for the passengers of a specific flight.

Within your code you only need to provide two parameters: the flight number and the arrival date.

You could then say to the customer:

Hey, there are passengers on your flight willing to share a taxi to city upon arrival. An added value at zero cost to the agency.

If no shares are found you could still tell the passenger: Did you know that you can offer to share a taxi to city to other passengers of your flight? Please visit http://taxi-share.caribation.com/ (free service to passengers)

PHP Example:

    include 'partnerClient.php';
    $shares = new partnerClient();
    $result = $shares->getTaxiShares( '1231', 'XX9999');  // returns 200 if taxi share offers are found

Our server will return 200 if there are taxi share offers for the flight XX9999 on the 31st of December.

Other return codes are:

  • 400 => No shares found!
  • 417 => Invalid request! (such as invalid parameters)
  • 500 => Unknown error

Credentials are required

To use this application you will need user and password to our system. Please contact agent.support@taxisharers.com to tell us about your business and to obtain the credentials.

You will then enter the user and password received form us right on the top of the partnerClient.php file:

    class partnerClient
    {
        protected $user     = '';   // assigned by Taxi Share - please request
        protected $password = '';   // assigned by Taxi Share - please request

About

Travel agents and airlines may check here if taxi shares are available for the passengers of a specific flight

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages