All URIs are relative to https://api.ageras.com/v2
Method | HTTP request | Description |
---|---|---|
ratingsCreate | POST /ratings | |
ratingsGet | GET /ratings/{rating_id} | |
ratingsIndex | GET /ratings | |
ratingsUpdate | PUT /ratings/{rating_id} |
\Ageras\Api\RatingResource ratingsCreate($rating_resource)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: jwt
Ageras\Api\Configuration::getDefaultConfiguration()->setApiKey('token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Ageras\Api\Configuration::getDefaultConfiguration()->setApiKeyPrefix('token', 'Bearer');
// Configure HTTP basic authorization: login
Ageras\Api\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
Ageras\Api\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');
$api_instance = new Ageras\Api\Api\RatingsApi();
$rating_resource = new \Ageras\Api\RatingResource(); // \Ageras\Api\RatingResource |
try {
$result = $api_instance->ratingsCreate($rating_resource);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling RatingsApi->ratingsCreate: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
rating_resource | \Ageras\Api\RatingResource |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Ageras\Api\RatingResource ratingsGet($rating_id )
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: jwt
Ageras\Api\Configuration::getDefaultConfiguration()->setApiKey('token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Ageras\Api\Configuration::getDefaultConfiguration()->setApiKeyPrefix('token', 'Bearer');
// Configure HTTP basic authorization: login
Ageras\Api\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
Ageras\Api\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');
$api_instance = new Ageras\Api\Api\RatingsApi();
$rating_id = "rating_id_example"; // string |
try {
$result = $api_instance->ratingsGet($rating_id );
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling RatingsApi->ratingsGet: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
rating_id | string |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Ageras\Api\RatingResult ratingsIndex($criteria)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: jwt
Ageras\Api\Configuration::getDefaultConfiguration()->setApiKey('token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Ageras\Api\Configuration::getDefaultConfiguration()->setApiKeyPrefix('token', 'Bearer');
// Configure HTTP basic authorization: login
Ageras\Api\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
Ageras\Api\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');
$api_instance = new Ageras\Api\Api\RatingsApi();
$criteria = [
'partner_id' => "partner_id_example"; // string | Partner id for the ratings to be filtered by.
'industry_id' => "industry_id_example"; // string | Partner industry id for the ratings to be filtered by.
'rating_id' => "rating_id_example"; // string | Rating ids.
'sort' => "created_at"; // string | Sort ratings by a given property.
'geo_code' => "geo_code_example"; // string | Geographic Location Code.
'stars' => "stars_example"; // string | List of stars to filter by
'is_public' => false; // bool | Only show the public variables
'geo_point' => "geo_point_example"; // string | Location Point to sort ratings by
'geo_distance' => 56; // int | Location filter by distance
'distinct' => "distinct_example"; // string | Only show distinct ratings
'limit' => 56; // int | The number of resources to be returned.
'page' => 56; // int | The page position in the result.
'query' => "query_example"; // string | The search wildcard.
];
try {
$result = $api_instance->ratingsIndex($criteria);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling RatingsApi->ratingsIndex: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
partner_id | string | Partner id for the ratings to be filtered by. | [optional] |
industry_id | string | Partner industry id for the ratings to be filtered by. | [optional] |
rating_id | string | Rating ids. | [optional] |
sort | string | Sort ratings by a given property. | [optional] [default to created_at] |
geo_code | string | Geographic Location Code. | [optional] |
stars | string | List of stars to filter by | [optional] |
is_public | bool | Only show the public variables | [optional] [default to false] |
geo_point | string | Location Point to sort ratings by | [optional] |
geo_distance | int | Location filter by distance | [optional] |
distinct | string | Only show distinct ratings | [optional] |
limit | int | The number of resources to be returned. | [optional] |
page | int | The page position in the result. | [optional] |
query | string | The search wildcard. | [optional] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Ageras\Api\RatingResource ratingsUpdate($rating_id , $rating_resource)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure API key authorization: jwt
Ageras\Api\Configuration::getDefaultConfiguration()->setApiKey('token', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Ageras\Api\Configuration::getDefaultConfiguration()->setApiKeyPrefix('token', 'Bearer');
// Configure HTTP basic authorization: login
Ageras\Api\Configuration::getDefaultConfiguration()->setUsername('YOUR_USERNAME');
Ageras\Api\Configuration::getDefaultConfiguration()->setPassword('YOUR_PASSWORD');
$api_instance = new Ageras\Api\Api\RatingsApi();
$rating_id = "rating_id_example"; // string |
$rating_resource = new \Ageras\Api\RatingResource(); // \Ageras\Api\RatingResource |
try {
$result = $api_instance->ratingsUpdate($rating_id , $rating_resource);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling RatingsApi->ratingsUpdate: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
rating_id | string | ||
rating_resource | \Ageras\Api\RatingResource |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]