delete_element
Remove one or more elements from a Revit model by specifying their element IDs, streamlining model cleanup and updates.
Instructions
Delete one or more elements from the Revit model by their element IDs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
elementIds | Yes | The IDs of the elements to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"elementIds": {
"description": "The IDs of the elements to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"elementIds"
],
"type": "object"
}