netbox_bulk_delete_objects
Delete multiple NetBox objects simultaneously by specifying object type and IDs. Permanently removes selected items with a single request.
Instructions
Delete multiple objects from NetBox in a single request.
Args:
object_type: String representing the NetBox object type (e.g. "devices", "ip-addresses")
object_ids: List of numeric IDs to delete
Returns: Success status
WARNING: This permanently deletes the objects and cannot be undone!
Example: To delete multiple devices: netbox_bulk_delete_objects("devices", [5, 6, 7])
Input Schema
Name | Required | Description | Default |
---|---|---|---|
object_ids | Yes | ||
object_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"object_ids": {
"items": {},
"title": "Object Ids",
"type": "array"
},
"object_type": {
"title": "Object Type",
"type": "string"
}
},
"required": [
"object_type",
"object_ids"
],
"type": "object"
}