All URIs are relative to http://localhost, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
environmentTrackingRestGetactionPost() | POST /environment/tracking/rest/getaction | |
environmentTrackingRestGetcurrentactionsPost() | POST /environment/tracking/rest/getcurrentactions | |
environmentTrackingRestGetserverutctimePost() | POST /environment/tracking/rest/getserverutctime | |
environmentTrackingRestGetuidactionsPost() | POST /environment/tracking/rest/getuidactions | |
environmentTrackingRestSearchactionsPost() | POST /environment/tracking/rest/searchactions |
environmentTrackingRestGetactionPost($id): \OpenAPI\Client\Model\ComHivextApiServerEnvironmentResponseObjectResponse
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\TrackingServiceApi(
// 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()
);
$id = 56; // int
try {
$result = $apiInstance->environmentTrackingRestGetactionPost($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling TrackingServiceApi->environmentTrackingRestGetactionPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerEnvironmentResponseObjectResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentTrackingRestGetcurrentactionsPost(): \OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
Returns the list of user’s current tasks.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\TrackingServiceApi(
// 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()
);
try {
$result = $apiInstance->environmentTrackingRestGetcurrentactionsPost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling TrackingServiceApi->environmentTrackingRestGetcurrentactionsPost: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentTrackingRestGetserverutctimePost(): \OpenAPI\Client\Model\ComHivextApiServerEnvironmentResponseObjectResponse
Gets UTC time of the server.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\TrackingServiceApi(
// 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()
);
try {
$result = $apiInstance->environmentTrackingRestGetserverutctimePost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling TrackingServiceApi->environmentTrackingRestGetserverutctimePost: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\OpenAPI\Client\Model\ComHivextApiServerEnvironmentResponseObjectResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentTrackingRestGetuidactionsPost($count, $endtime, $starttime, $actionTypes): \OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
Gets list of actions performed in the dashboard during some stated period of time.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\TrackingServiceApi(
// 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()
);
$count = 56; // int
$endtime = 'endtime_example'; // string
$starttime = 'starttime_example'; // string
$actionTypes = 'actionTypes_example'; // string
try {
$result = $apiInstance->environmentTrackingRestGetuidactionsPost($count, $endtime, $starttime, $actionTypes);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling TrackingServiceApi->environmentTrackingRestGetuidactionsPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
count | int | [optional] | |
endtime | string | [optional] | |
starttime | string | [optional] | |
actionTypes | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerDevelopmentResponseInterfacesArrayResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
environmentTrackingRestSearchactionsPost($search): \OpenAPI\Client\Model\ComHivextApiServerAdministrationResponsePagedArrayResponse
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\TrackingServiceApi(
// 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()
);
$search = new \OpenAPI\Client\Model\EnvironmentTrackingRestSearchactionsPostRequestSearch(); // \OpenAPI\Client\Model\EnvironmentTrackingRestSearchactionsPostRequestSearch
try {
$result = $apiInstance->environmentTrackingRestSearchactionsPost($search);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling TrackingServiceApi->environmentTrackingRestSearchactionsPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
search | \OpenAPI\Client\Model\EnvironmentTrackingRestSearchactionsPostRequestSearch |
\OpenAPI\Client\Model\ComHivextApiServerAdministrationResponsePagedArrayResponse
No authorization required
- Content-Type:
application/x-www-form-urlencoded
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]