> For the complete documentation index, see [llms.txt](https://notara.gitbook.io/notara-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notara.gitbook.io/notara-docs/connectors/zendesk.md).

# Zendesk

The Zendesk connector gives the agent access to your support tickets, customer conversations, user accounts, and Help Center articles — so the team can query support data without switching tools.

## What It Enables

| Tool                          | Capability | Description                                                                        |
| ----------------------------- | ---------- | ---------------------------------------------------------------------------------- |
| `search_tickets`              | `read`     | Search tickets using Zendesk query syntax (status, priority, tags, assignee, date) |
| `get_ticket`                  | `read`     | Get one ticket including its original description                                  |
| `list_ticket_comments`        | `read`     | Read the full conversation thread on a ticket                                      |
| `list_users`                  | `read`     | List users to resolve requester and assignee IDs to names                          |
| `list_organizations`          | `read`     | List customer organizations and their domain mappings                              |
| `search_help_center_articles` | `read`     | Full-text search your Help Center knowledge base                                   |

## Setup

**Required:** Zendesk API token, the agent email it belongs to, and your subdomain.

**Where to find it:** In Zendesk, go to **Admin Center → Apps and integrations → APIs → Zendesk API** and create an API token.

1. In the Notara dashboard, go to **Tools**.
2. Click the **Zendesk** tile.
3. Enter your **subdomain** (the part before `.zendesk.com`), the **agent email**, and the **API token**.
4. Click **Verify & Save**.

Your API token is encrypted at rest with AES-256-GCM.

## Example Prompts

> "How many urgent open tickets do we have right now?"

> "Show me all tickets from Acme Corp that are unresolved."

> "What does our Help Center say about refund policy?"


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://notara.gitbook.io/notara-docs/connectors/zendesk.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
