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

operationstring required

Dotted path to an OCCT operation

paramsobject

Operation-specific parameters

Example request

{
  "operation": "occt.shapes.solid.createSphere"
}

Response

Task accepted for processing

oktrue

Example response

{
  "data": {
    "statusUrl": "/api/v1/tasks/{taskId}"
  }
}

Changes