# JiboHotelServicesApi.TaxiApi

All URIs are relative to *https://jiboinroom.accpmo.com/api/v1*

Method | HTTP request | Description
------------- | ------------- | -------------
[**taxiPost**](TaxiApi.md#taxiPost) | **POST** /Taxi | Create Taxi Booking Request


<a name="taxiPost"></a>
# **taxiPost**
> Object taxiPost(latitude, longitude, _date, email)

Create Taxi Booking Request

The Taxi Booking Request endpoint books a taxi at a given date and location using *Uber API*. Note that the location is given with coordinates in this case. 

### Example
```javascript
var JiboHotelServicesApi = require('jibo_hotel_services_api');

var apiInstance = new JiboHotelServicesApi.TaxiApi();

var latitude = 3.4; // Number | Latitude of the current JIBO's Hotel Position

var longitude = 3.4; // Number | Longitude of the current JIBO's Hotel Position

var _date = "_date_example"; // String | Date when to book the Taxi

var email = "email_example"; // String | Client email


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.taxiPost(latitude, longitude, _date, email, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **latitude** | **Number**| Latitude of the current JIBO&#39;s Hotel Position | 
 **longitude** | **Number**| Longitude of the current JIBO&#39;s Hotel Position | 
 **_date** | **String**| Date when to book the Taxi | 
 **email** | **String**| Client email | 

### Return type

**Object**

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

