# KianaApi.GeofencenotealertcontrollerApi

All URIs are relative to *https://192.168.135.3:8082*

Method | HTTP request | Description
------------- | ------------- | -------------
[**changeGeofenceNoteAlertStatusUsingPATCH**](GeofencenotealertcontrollerApi.md#changeGeofenceNoteAlertStatusUsingPATCH) | **PATCH** /v2/api/geofence-note-alerts/{alertId} | Change geofence note alert status.
[**getGeoNoteAlertsUsingGET**](GeofencenotealertcontrollerApi.md#getGeoNoteAlertsUsingGET) | **GET** /v2/api/geofence-note-alerts | Get alerts for geofence note.


<a name="changeGeofenceNoteAlertStatusUsingPATCH"></a>
# **changeGeofenceNoteAlertStatusUsingPATCH**
> GeofenceNoteAlertResponse changeGeofenceNoteAlertStatusUsingPATCH(nonce, requestTime, authorization, alertId, alertStatusParam)

Change geofence note alert status.

### Example
```javascript
var KianaApi = require('kiana_api');

var apiInstance = new KianaApi.GeofencenotealertcontrollerApi();

var nonce = "nonce_example"; // String | Nonce

var requestTime = "requestTime_example"; // String | Request-Time

var authorization = "authorization_example"; // String | Api Key, Authenticated Token

var alertId = 789; // Number | alertId

var alertStatusParam = new KianaApi.GeofenceNoteAlertParam(); // GeofenceNoteAlertParam | alertStatusParam


var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
apiInstance.changeGeofenceNoteAlertStatusUsingPATCH(nonce, requestTime, authorization, alertId, alertStatusParam, callback);
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **nonce** | **String**| Nonce | 
 **requestTime** | **String**| Request-Time | 
 **authorization** | **String**| Api Key, Authenticated Token | 
 **alertId** | **Number**| alertId | 
 **alertStatusParam** | [**GeofenceNoteAlertParam**](GeofenceNoteAlertParam.md)| alertStatusParam | 

### Return type

[**GeofenceNoteAlertResponse**](GeofenceNoteAlertResponse.md)

### Authorization

No authorization required

### HTTP request headers

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

<a name="getGeoNoteAlertsUsingGET"></a>
# **getGeoNoteAlertsUsingGET**
> [GeofenceNoteAlertResponse] getGeoNoteAlertsUsingGET(nonce, requestTime, authorization, opts)

Get alerts for geofence note.

### Example
```javascript
var KianaApi = require('kiana_api');

var apiInstance = new KianaApi.GeofencenotealertcontrollerApi();

var nonce = "nonce_example"; // String | Nonce

var requestTime = "requestTime_example"; // String | Request-Time

var authorization = "authorization_example"; // String | Api Key, Authenticated Token

var opts = { 
  'acknowledged': true // Boolean | acknowledged
};

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

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **nonce** | **String**| Nonce | 
 **requestTime** | **String**| Request-Time | 
 **authorization** | **String**| Api Key, Authenticated Token | 
 **acknowledged** | **Boolean**| acknowledged | [optional] 

### Return type

[**[GeofenceNoteAlertResponse]**](GeofenceNoteAlertResponse.md)

### Authorization

No authorization required

### HTTP request headers

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

