template_delete
Remove templates from Zabbix by specifying their IDs. Returns a JSON-formatted result confirming the deletion success. Ideal for managing template cleanup in Zabbix monitoring systems.
Instructions
Delete templates from Zabbix.
Args:
templateids: List of template IDs to delete
Returns:
str: JSON formatted deletion result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
templateids | Yes |
Input Schema (JSON Schema)
{
"properties": {
"templateids": {
"items": {
"type": "string"
},
"title": "Templateids",
"type": "array"
}
},
"required": [
"templateids"
],
"type": "object"
}