template_update
Modify existing Zabbix templates by updating technical name, visible name, or description. Accepts a template ID and returns JSON formatted update results.
Instructions
Update an existing template in Zabbix.
Args:
templateid: Template ID to update
host: New template technical name
name: New template visible name
description: New template description
Returns:
str: JSON formatted update result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
host | No | ||
name | No | ||
templateid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"host": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Host"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"templateid": {
"title": "Templateid",
"type": "string"
}
},
"required": [
"templateid"
],
"type": "object"
}