# VerityReputation.ReputationApi

All URIs are relative to *http://springserver.cfapps.io/verity/core*

Method | HTTP request | Description
------------- | ------------- | -------------
[**getReputation**](ReputationApi.md#getReputation) | **GET** /reputation/{community}/{reputationtype}/{agent}/{valueaction} | get reputation


<a name="getReputation"></a>
# **getReputation**
> &#39;Number&#39; getReputation(community, reputationtype, agent, valueaction)

get reputation

### Example
```javascript
var VerityReputation = require('verity_reputation');

var apiInstance = new VerityReputation.ReputationApi();

var community = "community_example"; // String | 

var reputationtype = "reputationtype_example"; // String | 

var agent = "agent_example"; // String | 

var valueaction = "valueaction_example"; // String | 


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

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **community** | **String**|  | 
 **reputationtype** | **String**|  | 
 **agent** | **String**|  | 
 **valueaction** | **String**|  | 

### Return type

**&#39;Number&#39;**

### Authorization

No authorization required

### HTTP request headers

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

