# FreeHelpDeskApi.ValuesApi

All URIs are relative to *https://api.freehelpdesk.com*

Method | HTTP request | Description
------------- | ------------- | -------------
[**valuesDelete**](ValuesApi.md#valuesDelete) | **DELETE** /api/Values/{id} | 
[**valuesGet**](ValuesApi.md#valuesGet) | **GET** /api/Values | 
[**valuesGet_0**](ValuesApi.md#valuesGet_0) | **GET** /api/Values/{id} | 
[**valuesPost**](ValuesApi.md#valuesPost) | **POST** /api/Values | 
[**valuesPut**](ValuesApi.md#valuesPut) | **PUT** /api/Values/{id} | 


<a name="valuesDelete"></a>
# **valuesDelete**
> valuesDelete(id)



### Example
```javascript
var FreeHelpDeskApi = require('free_help_desk_api');
var defaultClient = FreeHelpDeskApi.ApiClient.instance;

// Configure API key authorization: Authorization
var Authorization = defaultClient.authentications['Authorization'];
Authorization.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Authorization.apiKeyPrefix = 'Token';

var apiInstance = new FreeHelpDeskApi.ValuesApi();

var id = 56; // Number | 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.valuesDelete(id, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **id** | **Number**|  | 

### Return type

null (empty response body)

### Authorization

[Authorization](../README.md#Authorization)

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: Not defined

<a name="valuesGet"></a>
# **valuesGet**
> [&#39;String&#39;] valuesGet()



### Example
```javascript
var FreeHelpDeskApi = require('free_help_desk_api');
var defaultClient = FreeHelpDeskApi.ApiClient.instance;

// Configure API key authorization: Authorization
var Authorization = defaultClient.authentications['Authorization'];
Authorization.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Authorization.apiKeyPrefix = 'Token';

var apiInstance = new FreeHelpDeskApi.ValuesApi();

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

### Parameters
This endpoint does not need any parameter.

### Return type

**[&#39;String&#39;]**

### Authorization

[Authorization](../README.md#Authorization)

### HTTP request headers

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

<a name="valuesGet_0"></a>
# **valuesGet_0**
> &#39;String&#39; valuesGet_0(id)



### Example
```javascript
var FreeHelpDeskApi = require('free_help_desk_api');
var defaultClient = FreeHelpDeskApi.ApiClient.instance;

// Configure API key authorization: Authorization
var Authorization = defaultClient.authentications['Authorization'];
Authorization.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Authorization.apiKeyPrefix = 'Token';

var apiInstance = new FreeHelpDeskApi.ValuesApi();

var id = 56; // Number | 


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

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **id** | **Number**|  | 

### Return type

**&#39;String&#39;**

### Authorization

[Authorization](../README.md#Authorization)

### HTTP request headers

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

<a name="valuesPost"></a>
# **valuesPost**
> valuesPost(value)



### Example
```javascript
var FreeHelpDeskApi = require('free_help_desk_api');
var defaultClient = FreeHelpDeskApi.ApiClient.instance;

// Configure API key authorization: Authorization
var Authorization = defaultClient.authentications['Authorization'];
Authorization.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Authorization.apiKeyPrefix = 'Token';

var apiInstance = new FreeHelpDeskApi.ValuesApi();

var value = "value_example"; // String | 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.valuesPost(value, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **value** | **String**|  | 

### Return type

null (empty response body)

### Authorization

[Authorization](../README.md#Authorization)

### HTTP request headers

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

<a name="valuesPut"></a>
# **valuesPut**
> valuesPut(id, value)



### Example
```javascript
var FreeHelpDeskApi = require('free_help_desk_api');
var defaultClient = FreeHelpDeskApi.ApiClient.instance;

// Configure API key authorization: Authorization
var Authorization = defaultClient.authentications['Authorization'];
Authorization.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Authorization.apiKeyPrefix = 'Token';

var apiInstance = new FreeHelpDeskApi.ValuesApi();

var id = 56; // Number | 

var value = "value_example"; // String | 


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
apiInstance.valuesPut(id, value, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **id** | **Number**|  | 
 **value** | **String**|  | 

### Return type

null (empty response body)

### Authorization

[Authorization](../README.md#Authorization)

### HTTP request headers

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

