# FacePokerApi.MovesApi

All URIs are relative to *https://virtserver.swaggerhub.com/krzynool/FacePokerSwag/1.0.0*

Method | HTTP request | Description
------------- | ------------- | -------------
[**move**](MovesApi.md#move) | **POST** /table/{tableId}/player/{playerId}/move | Make a move


<a name="move"></a>
# **move**
> Move move(authorization, tableId, playerId, opts)

Make a move

### Example
```javascript
var FacePokerApi = require('face_poker_api');

var apiInstance = new FacePokerApi.MovesApi();

var authorization = "authorization_example"; // String | Should be your bearer token

var tableId = "tableId_example"; // String | ID of table

var playerId = "playerId_example"; // String | ID of the player

var opts = { 
  'move': new FacePokerApi.Move() // Move | A move.
};
apiInstance.move(authorization, tableId, playerId, opts).then(function(data) {
  console.log('API called successfully. Returned data: ' + data);
}, function(error) {
  console.error(error);
});

```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **authorization** | **String**| Should be your bearer token | 
 **tableId** | **String**| ID of table | 
 **playerId** | **String**| ID of the player | 
 **move** | [**Move**](Move.md)| A move. | [optional] 

### Return type

[**Move**](Move.md)

### Authorization

No authorization required

### HTTP request headers

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

