All URIs are relative to https://api.ageras.com/v2
Method | HTTP request | Description |
---|---|---|
revenuesegmentsIndex | GET /revenuesegments |
\Ageras\Api\RevenueSegmentResult revenuesegmentsIndex($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\RevenuesegmentsApi();
$criteria = [
'geo_code' => "geo_code_example"; // string | Filter by geo code.
'primary_industry_id' => 56; // int | Filter by primary industry. @var int
'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->revenuesegmentsIndex($criteria);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling RevenuesegmentsApi->revenuesegmentsIndex: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
geo_code | string | Filter by geo code. | [optional] |
primary_industry_id | int | Filter by primary industry. @var int | [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] |
\Ageras\Api\RevenueSegmentResult
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]