latestOpenAPI 3.0.32026-08-201592,4923.4 MB

53223abaceb7

CADs

Create a CAD saved selection

Create a CAD saved selection. This operation creates a new CAD state.

post/cads/{cadId}/states/{cadStateId}/savedselections

Request body

namestring required

The name of the saved selection.

type'VOLUME' | 'FACE' | 'EDGE' | 'NODE' required

The type of the entities contained in the saved selection.

entitiesstring[] required

The entities included in the saved selection.

Example request

{
  "name": "My saved selection",
  "type": "FACE",
  "entityIds": [
    "B1_TE36",
    "B1_TE37",
    "B1_TE38"
  ]
}

Response

Successful operation.

cadStateIdstring uuid

ID of the newly created CAD state.

savedSelectionIdstring uuid

ID of the newly created saved selection.