# GuestCheckinRestApi.CheckinControllerApi

All URIs are relative to *//gc.int.skysail.io/*

Method | HTTP request | Description
------------- | ------------- | -------------
[**addVisitUsingPOST**](CheckinControllerApi.md#addVisitUsingPOST) | **POST** /checkins | adds a customers checkin to this restaurant if valid

<a name="addVisitUsingPOST"></a>
# **addVisitUsingPOST**
> &#x27;String&#x27; addVisitUsingPOST(body)

adds a customers checkin to this restaurant if valid

### Example
```javascript
import GuestCheckinRestApi from 'guest_checkin_rest_api';

let apiInstance = new GuestCheckinRestApi.CheckinControllerApi();
let body = new GuestCheckinRestApi.CheckinForm(); // CheckinForm | form

apiInstance.addVisitUsingPOST(body, (error, data, response) => {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
});
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **body** | [**CheckinForm**](CheckinForm.md)| form | 

### Return type

**&#x27;String&#x27;**

### Authorization

No authorization required

### HTTP request headers

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

