All URIs are relative to https://developer.api.autodesk.com
Method | HTTP request | Description |
---|---|---|
getAllEngines | GET /autocad.io/us-east/v2/Engines | Returns the details of all available AutoCAD core engines. |
getEngine | GET /autocad.io/us-east/v2/Engines('{id}') | Returns the details of a specific AutoCAD core engine. |
\Autodesk\Forge\Client\Model\DesignAutomationEngines getAllEngines()
Returns the details of all available AutoCAD core engines.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Autodesk\Forge\Client\Api\EnginesApi($authObject);
try {
$result = $apiInstance->getAllEngines();
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling EnginesApi->getAllEngines: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
\Autodesk\Forge\Client\Model\DesignAutomationEngines
- Content-Type: application/json
- Accept: application/vnd.api+json, application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Autodesk\Forge\Client\Model\Engine getEngine($id)
Returns the details of a specific AutoCAD core engine.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$apiInstance = new Autodesk\Forge\Client\Api\EnginesApi($authObject);
$id = "id_example"; // string |
try {
$result = $apiInstance->getEngine($id);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling EnginesApi->getEngine: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
id | string |
\Autodesk\Forge\Client\Model\Engine
- Content-Type: application/json
- Accept: application/vnd.api+json, application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]