All URIs are relative to https://localhost/
| Method | HTTP request | Description |
|---|---|---|
| cancelProcess | POST /api/Processes/{id}/Cancel | |
| getProcess | GET /api/Processes/{id} | |
| getProcesses | GET /api/Processes |
cancelProcess($id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\ProcessApi();
$id = "id_example"; // string |
try {
$api_instance->cancelProcess($id);
} catch (Exception $e) {
echo 'Exception when calling ProcessApi->cancelProcess: ', $e->getMessage(), "\n";
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
void (empty response body)
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\Process getProcess($id)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\ProcessApi();
$id = "id_example"; // string |
try {
$result = $api_instance->getProcess($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ProcessApi->getProcess: ', $e->getMessage(), "\n";
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| id | string |
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Swagger\Client\Model\Process[] getProcesses($all_status, $all_time)
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\ProcessApi();
$all_status = true; // bool |
$all_time = true; // bool |
try {
$result = $api_instance->getProcesses($all_status, $all_time);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling ProcessApi->getProcesses: ', $e->getMessage(), "\n";
}
?>| Name | Type | Description | Notes |
|---|---|---|---|
| all_status | bool | [optional] | |
| all_time | bool | [optional] |
\Swagger\Client\Model\Process[]
No authorization required
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]