latestOpenAPI 3.0.32026-08-201592,4923.4 MB
53223abaceb7
CAD Imports
Import a new CAD from file
CAD import requires the following steps:
- Request a temporary storage location via POST /storage.
- Upload your CAD file using the HTTP PUT method to the url provided in the temporary storage location response object.
- Start the import via POST /projects/{projectId}/cadimports and include the storageId provided in the temporary storage location response object.
- Check for the import status via GET /projects/{projectId}/cadimports/{cadId}.
post/projects/{projectId}/cadimports
Request body
Example request
{
"name": "My first CAD",
"location": {
"storageId": "qwertyuiop1234567890"
},
"format": "STL",
"inputUnit": "m",
"options": {
"facetSplit": false,
"sewing": false,
"improve": true,
"optimizeForLBMSolver": true
}
}Response
Successful start of the import.
Example response
{
"cadId": "f48bf48b-f48b-f48b-f48b-f48bf48bf48b",
"status": "FINISHED",
"cadStateId": "159c159c-159c-159c-159c-159c159c159c",
"failureReason": null
}