item_delete
Remove items from Zabbix by specifying item IDs. Provides JSON-formatted results for deletion confirmation, streamlining item management in monitoring systems.
Instructions
Delete items from Zabbix.
Args:
itemids: List of item IDs to delete
Returns:
str: JSON formatted deletion result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"itemids": {
"items": {
"type": "string"
},
"title": "Itemids",
"type": "array"
}
},
"required": [
"itemids"
],
"type": "object"
}