Zendesk
Overview
Connect your ElevenLabs AI agents with Zendesk to manage support tickets, users, and organizations. This integration enables your agents to create and update tickets, search for existing records, manage users, and respond to incoming ticket comments.
Setup
This integration supports two authentication methods: API token and OAuth client.
API token
Custom OAuth client
Enable API token access
In Zendesk Admin Center, go to Apps and integrations > APIs > Zendesk API and enable Token Access.
Generate an API token
Go to Apps and integrations > APIs > API tokens and click Add API token. Copy the token immediately — it is not shown again after closing the dialog.
Zendesk tools
Add Zendesk tools to your agent to manage tickets, users, and organizations during conversations. Once the integration is connected, you can enable individual tools on your agent’s configuration page.
Available tools
The integration provides over 30 tools organized into the following categories:
- Tickets — create, update, delete, list, and search tickets. Bulk operations (create many, update many, delete many) are also available.
- Comments & tags — add public or internal comments to tickets, and add or remove tags.
- Users — look up, create, update, and delete users. Bulk create-or-update is supported for syncing user data.
- Organizations — retrieve organization details and list an organization’s tickets.
- Search — run Zendesk search queries across tickets, users, and organizations (e.g.,
type:ticket status:open).
Example tools
zendesk_create_ticket
zendesk_search
zendesk_add_comment
zendesk_get_user
Creates a new support ticket. The agent collects details from the caller and opens a ticket on their behalf.
Configuring tools
Add an integration tool
On your agent’s configuration page, click Add tool and select Add integration tool.

Select Zendesk tools
Choose your Zendesk connection and toggle the tools you want the agent to use. You can enable as many or as few as needed — for example, a read-only triage agent might only need search and list tools, while a full-service agent might also create and update tickets.

(Optional) Provide parameters
Each tool’s parameters are filled by the agent during the conversation based on what the caller says. You do not need to hard-code parameter values. However, you can optionally pre-fill or constrain specific parameters — for example, setting a default priority or group_id — to guide the agent’s behavior.
Legacy webhook setup
If you use the native Zendesk integration, tools are configured automatically. The steps below apply only to manual webhook setup.
The legacy integration uses three webhook tools to create the support agent. Review each tool’s configuration in the tabs below.
zendesk_get_ticket_comments
zendesk_get_resolved_tickets
zendesk_open_ticket
Name: zendesk_get_ticket_comments
Description: Retrieves the comments of a ticket.
Method: GET
URL: https://acmecorp.zendesk.com/api/v2/tickets/{ticket_id}/comments.json
Headers:
- Content-Type:
application/json - Authorization: (Secret:
zendesk_key)
Path Parameters:
- ticket_id: Extract the value from the
idfield in the get_resolved_tickets results.
Tool JSON:
Zendesk triggers
Configure Zendesk triggers to have your agent monitor and react to incoming ticket comments, providing first-line support.
Setup
Create a trigger in Zendesk
In Zendesk Admin Center, go to Objects and rules > Business rules > Triggers and click Add trigger. Configure the conditions that determine which ticket events the agent should respond to (e.g., new tickets in a specific group, ticket comments with a certain tag). Note the trigger name — you will need it in the next step.
If you cannot save the trigger because an action is missing, add a simple action like adding an “agent is processing” tag to the ticket.
Connect the trigger in ElevenLabs
On your agent’s configuration page, add a new trigger and select Zendesk Trigger. Configure the fields:
- Agent: the agent that handles incoming conversations.
- Trigger Rule Name: the name of the Zendesk trigger you created in the previous step.
- Daily Ticket Limit (optional): maximum number of tickets the agent handles per day. Leave empty for unlimited.
When you activate the trigger, ElevenLabs creates a webhook in your Zendesk account and adds it as an action to the trigger you specified. Deactivating the trigger removes the webhook and action.
Shadow mode
Enable shadow mode on a Zendesk trigger to let the agent observe and draft responses without replying to customers directly. When shadow mode is active, the agent writes its responses as internal comments on the ticket instead of public replies. Only Zendesk agents and admins can see internal comments — the end user is not notified.
Shadow mode only affects how the agent posts its responses. If the agent uses tools that modify the ticket (e.g., changing status, adding tags, or assigning the ticket), those changes still apply. To prevent unintended modifications, use a separate branch of the agent with modifying tool calls removed.
Shadow mode is useful for evaluating agent quality before going live. Review the internal comments alongside the actual support responses to compare accuracy and tone, then promote the agent to active mode once you are confident in its output.
Avoiding loops
When the agent responds to a ticket comment via the Zendesk API, that response is itself a new comment — which can re-trigger the agent and create an infinite loop. Add either of the following conditions to your Zendesk trigger to prevent this.
Exclude the service account from the trigger. Create a separate Zendesk user for the integration (e.g., ai-agent@yourcompany.com) and use this account’s credentials when connecting in ElevenLabs. Then add this condition to your Zendesk trigger:
- Current User, Is Not, <your service account>
Exclude API updates from the trigger. This filters out all updates made through the Zendesk API, regardless of which user made them:
- Ticket > Update Via, Is Not, Web Service (API)