hostgroup_update
Modify an existing Zabbix host group by updating its name using specified group ID. Returns JSON-formatted results for tracking changes.
Instructions
Update an existing host group in Zabbix.
Args:
groupid: Group ID to update
name: New group name
Returns:
str: JSON formatted update result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupid | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"groupid": {
"title": "Groupid",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"groupid",
"name"
],
"type": "object"
}