All URIs are relative to http://localhost, except if the operation defines another base path.
| Method | HTTP request | Description |
|---|---|---|
| marketplaceAppRestAddappPost() | POST /marketplace/app/rest/addapp | |
| marketplaceAppRestDeleteappPost() | POST /marketplace/app/rest/deleteapp | |
| marketplaceAppRestEditappPost() | POST /marketplace/app/rest/editapp | |
| marketplaceAppRestGetaddonlistPost() | POST /marketplace/app/rest/getaddonlist | |
| marketplaceAppRestGetappinfoPost() | POST /marketplace/app/rest/getappinfo | |
| marketplaceAppRestGetcategoriesPost() | POST /marketplace/app/rest/getcategories | |
| marketplaceAppRestGetchecksumPost() | POST /marketplace/app/rest/getchecksum | |
| marketplaceAppRestGetlistPost() | POST /marketplace/app/rest/getlist | |
| marketplaceAppRestInstallPost() | POST /marketplace/app/rest/install | |
| marketplaceAppRestInstalladdonPost() | POST /marketplace/app/rest/installaddon |
marketplaceAppRestAddappPost($manifest): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAddAppResponseAdds the user's personal JPS manifest to the marketplace (will be visible for the current user only).
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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()
);
$manifest = 'manifest_example'; // string
try {
$result = $apiInstance->marketplaceAppRestAddappPost($manifest);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestAddappPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| manifest | string |
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAddAppResponse
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]
marketplaceAppRestDeleteappPost($id): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponseDeletes the user's personal JPS manifest from the marketplace.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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 = 'id_example'; // string
try {
$result = $apiInstance->marketplaceAppRestDeleteappPost($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestDeleteappPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | 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]
marketplaceAppRestEditappPost($manifest, $id): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponseEdits the user's personal JPS manifest in the marketplace.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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()
);
$manifest = 'manifest_example'; // string
$id = 'id_example'; // string
try {
$result = $apiInstance->marketplaceAppRestEditappPost($manifest, $id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestEditappPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| manifest | string | ||
| id | 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]
marketplaceAppRestGetaddonlistPost($search, $envName, $lang, $nodeGroup): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAppsListResponseReturns information about available add-ons (including already installed ones) for the specified environment or node group.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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
$envName = 'envName_example'; // string
$lang = 'lang_example'; // string
$nodeGroup = 'nodeGroup_example'; // string
try {
$result = $apiInstance->marketplaceAppRestGetaddonlistPost($search, $envName, $lang, $nodeGroup);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestGetaddonlistPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| search | string | [optional] | |
| envName | string | [optional] | |
| lang | string | [optional] | |
| nodeGroup | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAppsListResponse
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]
marketplaceAppRestGetappinfoPost($id, $lang, $ownerUid): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAppInfoResponseReturns information about the application from the marketplace.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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 = 'id_example'; // string
$lang = 'lang_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->marketplaceAppRestGetappinfoPost($id, $lang, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestGetappinfoPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| lang | string | [optional] | |
| ownerUid | int | [optional] |
\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]
marketplaceAppRestGetcategoriesPost(): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponseReturns information about available application categories in the marketplace.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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->marketplaceAppRestGetcategoriesPost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestGetcategoriesPost: ', $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]
marketplaceAppRestGetchecksumPost(): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseChecksumResponseReturns the current checksum of the marketplace applications.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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->marketplaceAppRestGetchecksumPost();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestGetchecksumPost: ', $e->getMessage(), PHP_EOL;
}This endpoint does not need any parameter.
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseChecksumResponse
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]
marketplaceAppRestGetlistPost($search, $lang): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAppsListResponseReturns information about applications available in the marketplace for the current user.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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
$lang = 'lang_example'; // string
try {
$result = $apiInstance->marketplaceAppRestGetlistPost($search, $lang);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestGetlistPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| search | string | [optional] | |
| lang | string | [optional] |
\OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseAppsListResponse
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]
marketplaceAppRestInstallPost($id, $settings, $envGroups, $nodes, $skipEmail, $envName, $displayName, $overrideNodes, $skipNodeEmails, $region, $ownerUid): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseInstallResponseInstalls one of the applications available in the marketplace.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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 = 'id_example'; // string
$settings = 'settings_example'; // string
$envGroups = 'envGroups_example'; // string
$nodes = 'nodes_example'; // string
$skipEmail = True; // bool
$envName = 'envName_example'; // string
$displayName = 'displayName_example'; // string
$overrideNodes = True; // bool
$skipNodeEmails = True; // bool
$region = 'region_example'; // string
$ownerUid = 56; // int
try {
$result = $apiInstance->marketplaceAppRestInstallPost($id, $settings, $envGroups, $nodes, $skipEmail, $envName, $displayName, $overrideNodes, $skipNodeEmails, $region, $ownerUid);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestInstallPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| settings | string | [optional] | |
| envGroups | string | [optional] | |
| nodes | string | [optional] | |
| skipEmail | bool | [optional] | |
| envName | string | [optional] | |
| displayName | string | [optional] | |
| overrideNodes | bool | [optional] | |
| skipNodeEmails | bool | [optional] | |
| region | string | [optional] | |
| ownerUid | int | [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]
marketplaceAppRestInstalladdonPost($id, $settings, $skipEmail, $envName, $nodeGroup): \OpenAPI\Client\Model\ComHivextApiServerMarketplaceResponseInstallResponseInstalls one of the add-ons available for the existing environment.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\AppServiceApi(
// 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 = 'id_example'; // string
$settings = 'settings_example'; // string
$skipEmail = True; // bool
$envName = 'envName_example'; // string
$nodeGroup = 'nodeGroup_example'; // string
try {
$result = $apiInstance->marketplaceAppRestInstalladdonPost($id, $settings, $skipEmail, $envName, $nodeGroup);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling AppServiceApi->marketplaceAppRestInstalladdonPost: ', $e->getMessage(), PHP_EOL;
}| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | ||
| settings | string | [optional] | |
| skipEmail | bool | [optional] | |
| envName | string | [optional] | |
| nodeGroup | 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]