CAD
Execute a single CAD operation
Runs one OCCT operation by its dotted path (e.g. occt.shapes.solid.createSphere). Returns 202 Accepted with a task ID.
post/api/v1/cad/execute
Request body
Example request
{
"operation": "occt.shapes.solid.createSphere"
}Response
Task accepted for processing
Example response
{
"data": {
"statusUrl": "/api/v1/tasks/{taskId}"
}
}