create_user
Add users to Zendesk by specifying name, email, role, phone, organization ID, tags, and notes. Streamline user management within Zendesk Support, Talk, Chat, and Guide products.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | User's email address | ||
name | Yes | User's full name | |
notes | No | Notes about the user | |
organization_id | No | ID of the user's organization | |
phone | No | User's phone number | |
role | No | User's role | |
tags | No | Tags for the user |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"description": "User's email address",
"format": "email",
"type": "string"
},
"name": {
"description": "User's full name",
"type": "string"
},
"notes": {
"description": "Notes about the user",
"type": "string"
},
"organization_id": {
"description": "ID of the user's organization",
"type": "number"
},
"phone": {
"description": "User's phone number",
"type": "string"
},
"role": {
"description": "User's role",
"enum": [
"end-user",
"agent",
"admin"
],
"type": "string"
},
"tags": {
"description": "Tags for the user",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"email"
],
"type": "object"
}