All URIs are relative to http://localhost, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
environmentExportRestCreatePost() | POST /environment/export/rest/create | |
environmentExportRestDeletePost() | POST /environment/export/rest/delete | |
environmentExportRestDeleteexporteddataPost() | POST /environment/export/rest/deleteexporteddata | |
environmentExportRestGetlistPost() | POST /environment/export/rest/getlist | |
environmentExportRestGetmanifestPost() | POST /environment/export/rest/getmanifest |
environmentExportRestCreatePost($settings): \OpenAPI\Client\Model\ComHivextApiResponse
Create
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ExportServiceApi(
// 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()
);
$settings = 'settings_example'; // string
try {
$result = $apiInstance->environmentExportRestCreatePost($settings);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ExportServiceApi->environmentExportRestCreatePost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
settings | string |
\OpenAPI\Client\Model\ComHivextApiResponse
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]
environmentExportRestDeletePost($envName, $id): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponse
Delete
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ExportServiceApi(
// 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()
);
$envName = 'envName_example'; // string
$id = 'id_example'; // string
try {
$result = $apiInstance->environmentExportRestDeletePost($envName, $id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ExportServiceApi->environmentExportRestDeletePost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
envName | 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]
environmentExportRestDeleteexporteddataPost($fileName, $envName): \OpenAPI\Client\Model\ComHivextApiResponse
DeleteExportedData
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ExportServiceApi(
// 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()
);
$fileName = 'fileName_example'; // string
$envName = 'envName_example'; // string
try {
$result = $apiInstance->environmentExportRestDeleteexporteddataPost($fileName, $envName);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ExportServiceApi->environmentExportRestDeleteexporteddataPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
fileName | string | ||
envName | string |
\OpenAPI\Client\Model\ComHivextApiResponse
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]
environmentExportRestGetlistPost($envName): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponse
GetList
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ExportServiceApi(
// 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()
);
$envName = 'envName_example'; // string
try {
$result = $apiInstance->environmentExportRestGetlistPost($envName);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ExportServiceApi->environmentExportRestGetlistPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
envName | 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]
environmentExportRestGetmanifestPost($envName, $id): \OpenAPI\Client\Model\ComHivextApiServerResponseScriptEvalProxyResponse
GetManifest
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new OpenAPI\Client\Api\ExportServiceApi(
// 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()
);
$envName = 'envName_example'; // string
$id = 'id_example'; // string
try {
$result = $apiInstance->environmentExportRestGetmanifestPost($envName, $id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ExportServiceApi->environmentExportRestGetmanifestPost: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
envName | 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]