All URIs are relative to http://localhost, except if the operation defines another base path.
| Method | HTTP request | Description |
|---|---|---|
| buildInfoGetInfo() | GET /api/backoffice/v1/info | Returns assembly build info. |
| buildInfoHeadInfo() | HEAD /api/backoffice/v1/info | Returns assembly build info. |
buildInfoGetInfo(): \Aurigma\BackOffice\Model\BuildInfoModelReturns assembly build info.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Aurigma\BackOffice\Api\BuildInfoApi(
// 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->buildInfoGetInfo();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling BuildInfoApi->buildInfoGetInfo: ', $e->getMessage(), PHP_EOL;
}This endpoint does not need any parameter.
\Aurigma\BackOffice\Model\BuildInfoModel
No authorization required
- Content-Type: Not defined
- Accept:
application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
buildInfoHeadInfo()Returns assembly build info.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Aurigma\BackOffice\Api\BuildInfoApi(
// 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 {
$apiInstance->buildInfoHeadInfo();
} catch (Exception $e) {
echo 'Exception when calling BuildInfoApi->buildInfoHeadInfo: ', $e->getMessage(), PHP_EOL;
}This endpoint does not need any parameter.
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]