All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
info | POST /info | |
stats | POST /stats |
\Alfaview\Model\QuotaServiceInfoReply info($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\QuotaServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$body = new \Alfaview\Model\QuotaServiceInfoRequest(); // \Alfaview\Model\QuotaServiceInfoRequest |
try {
$result = $apiInstance->info($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QuotaServiceApi->info: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\QuotaServiceInfoRequest |
\Alfaview\Model\QuotaServiceInfoReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Alfaview\Model\QuotaServiceStatsReply stats($body)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Alfaview\Api\QuotaServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client()
);
$body = new \Alfaview\Model\QuotaServiceStatsRequest(); // \Alfaview\Model\QuotaServiceStatsRequest |
try {
$result = $apiInstance->stats($body);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling QuotaServiceApi->stats: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Alfaview\Model\QuotaServiceStatsRequest |
\Alfaview\Model\QuotaServiceStatsReply
No authorization required
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]