Skip to content

Latest commit

 

History

History
64 lines (42 loc) · 1.96 KB

GlobalEzmaxclientApi.md

File metadata and controls

64 lines (42 loc) · 1.96 KB

eZmaxAPI\GlobalEzmaxclientApi

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()

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.

Example

<?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;
}

Parameters

Name Type Description Notes
pksEzmaxclientOs FieldPksEzmaxclientOs

Return type

\eZmaxAPI\Model\GlobalEzmaxclientVersionV1Response

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]