netbox_delete_object
Permanently remove specified objects from NetBox infrastructure management by providing object type and ID. Deletion is irreversible.
Instructions
Delete an object from NetBox.
Args: object_type: String representing the NetBox object type (e.g. "devices", "ip-addresses") object_id: The numeric ID of the object to delete
Returns: True if deletion was successful
WARNING: This permanently deletes the object and cannot be undone!
Example: To delete a device: netbox_delete_object("devices", 5)
To delete an IP address: netbox_delete_object("ip-addresses", 123)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
object_id | Yes | ||
object_type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"object_id": {
"title": "Object Id",
"type": "integer"
},
"object_type": {
"title": "Object Type",
"type": "string"
}
},
"required": [
"object_type",
"object_id"
],
"type": "object"
}