user_update
Modify user details in Zabbix by updating username, name, surname, or email using the specified user ID. Returns JSON-formatted update results for streamlined user management.
Instructions
Update an existing user in Zabbix.
Args:
userid: User ID to update
username: New username
name: New first name
surname: New last name
email: New email address
Returns:
str: JSON formatted update result
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | |||
name | No | ||
surname | No | ||
userid | Yes | ||
username | No |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Email"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"surname": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Surname"
},
"userid": {
"title": "Userid",
"type": "string"
},
"username": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Username"
}
},
"required": [
"userid"
],
"type": "object"
}