All URIs are relative to http://localhost, except if the operation defines another base path.
| Method | HTTP request | Description |
|---|---|---|
| marketplaceInstallationRestExecuteactionPost() | POST /marketplace/installation/rest/executeaction | |
| marketplaceInstallationRestGetenvappidPost() | POST /marketplace/installation/rest/getenvappid | |
| marketplaceInstallationRestGetinfoPost() | POST /marketplace/installation/rest/getinfo | |
| marketplaceInstallationRestGetlistPost() | POST /marketplace/installation/rest/getlist | |
| marketplaceInstallationRestGetscriptingappidPost() | POST /marketplace/installation/rest/getscriptingappid | |
| marketplaceInstallationRestGetsettingsPost() | POST /marketplace/installation/rest/getsettings | |
| marketplaceInstallationRestUninstallPost() | POST /marketplace/installation/rest/uninstall |
marketplaceInstallationRestExecuteactionPost($appUniqueName, $action, $settingsId, $params, $lang): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseInstallResponseExecutes custom action that is available for the installed application.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InstallationServiceApi(
// 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()
);
$appUniqueName = 'appUniqueName_example'; // string
$action = 'action_example'; // string
$settingsId = 'settingsId_example'; // string
$params = 'params_example'; // string
$lang = 'lang_example'; // string
try {
$result = $apiInstance->marketplaceInstallationRestExecuteactionPost($appUniqueName, $action, $settingsId, $params, $lang);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InstallationServiceApi->marketplaceInstallationRestExecuteactionPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| appUniqueName | string | ||
| action | string | [optional] | |
| settingsId | string | [optional] | |
| params | string | [optional] | |
| lang | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseInstallResponse
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]
marketplaceInstallationRestGetenvappidPost($appUniqueName): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseGetScriptingAppidResponse<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InstallationServiceApi(
// 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()
);
$appUniqueName = 'appUniqueName_example'; // string
try {
$result = $apiInstance->marketplaceInstallationRestGetenvappidPost($appUniqueName);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InstallationServiceApi->marketplaceInstallationRestGetenvappidPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| appUniqueName | string |
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseGetScriptingAppidResponse
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]
marketplaceInstallationRestGetinfoPost($appUniqueName): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAppInfoResponseReturns information about the specific application.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InstallationServiceApi(
// 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()
);
$appUniqueName = 'appUniqueName_example'; // string
try {
$result = $apiInstance->marketplaceInstallationRestGetinfoPost($appUniqueName);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InstallationServiceApi->marketplaceInstallationRestGetinfoPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| appUniqueName | string |
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAppInfoResponse
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]
marketplaceInstallationRestGetlistPost($search): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponseReturns information about all the installed applications.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InstallationServiceApi(
// 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 = 'search_example'; // string
try {
$result = $apiInstance->marketplaceInstallationRestGetlistPost($search);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InstallationServiceApi->marketplaceInstallationRestGetlistPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| search | string | [optional] |
\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]
marketplaceInstallationRestGetscriptingappidPost(): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseGetScriptingAppidResponseReturns a unique identifier of the user's Cloud Scripting application.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InstallationServiceApi(
// 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->marketplaceInstallationRestGetscriptingappidPost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InstallationServiceApi->marketplaceInstallationRestGetscriptingappidPost: ', $e->getMessage(), PHP_EOL;
}This endpoint does not need any parameter.
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseGetScriptingAppidResponse
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]
marketplaceInstallationRestGetsettingsPost($appUniqueName, $settingsId, $lang): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseSettingsResponseReturns application custom settings.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InstallationServiceApi(
// 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()
);
$appUniqueName = 'appUniqueName_example'; // string
$settingsId = 'settingsId_example'; // string
$lang = 'lang_example'; // string
try {
$result = $apiInstance->marketplaceInstallationRestGetsettingsPost($appUniqueName, $settingsId, $lang);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InstallationServiceApi->marketplaceInstallationRestGetsettingsPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| appUniqueName | string | ||
| settingsId | string | [optional] | |
| lang | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseSettingsResponse
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]
marketplaceInstallationRestUninstallPost($appUniqueName, $force): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponseUninstalls the installed application.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\InstallationServiceApi(
// 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()
);
$appUniqueName = 'appUniqueName_example'; // string
$force = True; // bool
try {
$result = $apiInstance->marketplaceInstallationRestUninstallPost($appUniqueName, $force);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling InstallationServiceApi->marketplaceInstallationRestUninstallPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| appUniqueName | string | ||
| force | bool | [optional] |
\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]