All URIs are relative to http://localhost, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
marketplaceConsoleRestClearlogPost() | POST /marketplace/console/rest/clearlog | |
marketplaceConsoleRestReadlogPost() | POST /marketplace/console/rest/readlog | |
marketplaceConsoleRestWritelogPost() | POST /marketplace/console/rest/writelog |
marketplaceConsoleRestClearlogPost(): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponse
Clears all console messages.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ConsoleServiceApi(
// 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->marketplaceConsoleRestClearlogPost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConsoleServiceApi->marketplaceConsoleRestClearlogPost: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponse
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]
marketplaceConsoleRestReadlogPost(): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseReadLogResponse
Reads the last messages in the console.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ConsoleServiceApi(
// 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->marketplaceConsoleRestReadlogPost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConsoleServiceApi->marketplaceConsoleRestReadlogPost: ', $e->getMessage(), PHP_EOL;
}
This endpoint does not need any parameter.
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseReadLogResponse
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]
marketplaceConsoleRestWritelogPost($message): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponse
Writes a custom message to the console.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ConsoleServiceApi(
// 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()
);
$message = 'message_example'; // string
try {
$result = $apiInstance->marketplaceConsoleRestWritelogPost($message);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ConsoleServiceApi->marketplaceConsoleRestWritelogPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
message | string |
\OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponse
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]