All URIs are relative to http://localhost.
Method | HTTP request | Description |
---|---|---|
buildInfoGetInfo() | GET /api/processor/v1/info | Gets assembly build info |
buildInfoHeadInfo() | HEAD /api/processor/v1/info | Gets assembly build info |
buildInfoGetInfo(): \Aurigma\AssetProcessor\Model\BuildInfoModel
Gets assembly build info
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Aurigma\AssetProcessor\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\AssetProcessor\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()
Gets assembly build info
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Aurigma\AssetProcessor\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]