# JiboHotelServicesApi.LocalContextApi

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

Method | HTTP request | Description
------------- | ------------- | -------------
[**localContextGet**](LocalContextApi.md#localContextGet) | **GET** /LocalContext | Get Local Context


<a name="localContextGet"></a>
# **localContextGet**
> InlineResponse200 localContextGet(JIBO_ID)

Get Local Context

The Local context endpoint returns information about the *Customer and the Hotel* using the unique JIBO&#39;S Serial Number.

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

var apiInstance = new JiboHotelServicesApi.LocalContextApi();

var JIBO_ID = "JIBO_ID_example"; // String | JIBO's Serial Number. Unique identifier representing a specific JIBO for a given client.


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.localContextGet(JIBO_ID, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **JIBO_ID** | **String**| JIBO&#39;s Serial Number. Unique identifier representing a specific JIBO for a given client. | 

### Return type

[**InlineResponse200**](InlineResponse200.md)

### Authorization

No authorization required

### HTTP request headers

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

