All URIs are relative to https://prod.api.appcluster01.ca-central-1.ezmax.com/rest, except if the operation defines another base path.
Method | HTTP request | Description |
---|---|---|
globalEzmaxclientVersionV1() | GET /1/ezmaxclient/{pksEzmaxclientOs}/version | Retrieve the latest version of the Ezmaxclient |
globalEzmaxclientVersionV1($pksEzmaxclientOs): \eZmaxAPI\Model\GlobalEzmaxclientVersionV1Response
Retrieve the latest version of the Ezmaxclient
Retrieve the latest version of the Ezmaxclient that is available on the store.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new eZmaxAPI\Api\GlobalEzmaxclientApi(
// 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()
);
$pksEzmaxclientOs = new \eZmaxAPI\Model\FieldPksEzmaxclientOs(); // FieldPksEzmaxclientOs
try {
$result = $apiInstance->globalEzmaxclientVersionV1($pksEzmaxclientOs);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling GlobalEzmaxclientApi->globalEzmaxclientVersionV1: ', $e->getMessage(), PHP_EOL;
}
Name | Type | Description | Notes |
---|---|---|---|
pksEzmaxclientOs | FieldPksEzmaxclientOs |
\eZmaxAPI\Model\GlobalEzmaxclientVersionV1Response
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]