update_user
Modify user details in Zendesk by updating name, email, role, phone, organization, tags, or notes using the Zendesk API MCP Server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | Updated email address | ||
id | Yes | User ID to update | |
name | No | Updated user's name | |
notes | No | Updated notes about the user | |
organization_id | No | Updated organization ID | |
phone | No | Updated phone number | |
role | No | Updated user's role | |
tags | No | Updated tags for the user |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "Updated email address",
"format": "email",
"type": "string"
},
"id": {
"description": "User ID to update",
"type": "number"
},
"name": {
"description": "Updated user's name",
"type": "string"
},
"notes": {
"description": "Updated notes about the user",
"type": "string"
},
"organization_id": {
"description": "Updated organization ID",
"type": "number"
},
"phone": {
"description": "Updated phone number",
"type": "string"
},
"role": {
"description": "Updated user's role",
"enum": [
"end-user",
"agent",
"admin"
],
"type": "string"
},
"tags": {
"description": "Updated tags for the user",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"id"
],
"type": "object"
}