Skip to main content

Documentation Index

Fetch the complete documentation index at: https://nango.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

πŸš€ Quickstart

Connect to Zendesk with Nango and see data flow in 2 minutes.
1

Create an integration

In Nango (free signup), go to Integrations -> Configure New Integration -> Zendesk.
2

Authorize Zendesk

Go to Connections -> Add Test Connection -> Authorize, then log in to Zendesk. Later, you’ll let your users do the same directly from your app.
3

Call the Zendesk API

Let’s make your first request to the Zendesk API (fetch a list of tickets). Replace the placeholders below with your secret key, integration ID, and connection ID:
curl "https://api.nango.dev/proxy/api/v2/search?query=type:ticket&per_page=10" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>"
Or fetch credentials dynamically via the Node SDK or API.βœ… You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.

πŸ“š Zendesk Integration Guides

Nango maintained guides for common use cases. Official docs: Zendesk API documentation

🧩 Pre-built syncs & actions for Zendesk

Enable them in your dashboard. Extend and customize to fit your needs.

Articles

Function nameDescriptionTypeSource code
list-articlesList Zendesk Help Center articles with paginationActionπŸ”— Github

Groups

Function nameDescriptionTypeSource code
get-groupRetrieve a group by ID.ActionπŸ”— Github
list-groupsList support groupsActionπŸ”— Github
groupsSync support groups from Zendesk.SyncπŸ”— Github

Help Center

Function nameDescriptionTypeSource code
create-categoryCreate a Zendesk Help Center categoryActionπŸ”— Github
create-sectionCreate a Zendesk Help Center sectionActionπŸ”— Github
get-articleRetrieve a Zendesk Help Center article by ID.ActionπŸ”— Github

Macros

Function nameDescriptionTypeSource code
list-macrosList ticket macros available to the accountActionπŸ”— Github

Organizations

Function nameDescriptionTypeSource code
create-organizationCreate an organization in Zendesk SupportActionπŸ”— Github
get-organizationRetrieve an organization by ID.ActionπŸ”— Github
list-organizationsList organizations in Zendesk Support.ActionπŸ”— Github
update-organizationUpdate an existing organization in Zendesk.ActionπŸ”— Github

Ticket Fields

Function nameDescriptionTypeSource code
get-ticket-fieldRetrieve a ticket field by ID.ActionπŸ”— Github

Ticket Forms

Function nameDescriptionTypeSource code
get-ticket-formRetrieve a ticket form by ID.ActionπŸ”— Github
list-ticket-formsList ticket forms for the account.ActionπŸ”— Github

Tickets

Function nameDescriptionTypeSource code
create-ticketCreate a support ticket in ZendeskActionπŸ”— Github
get-ticket-commentsList comments for a ticket.ActionπŸ”— Github
get-ticketRetrieve a ticket by ID.ActionπŸ”— Github
list-ticket-fieldsList ticket fields for the account.ActionπŸ”— Github
list-ticketsList tickets in Zendesk SupportActionπŸ”— Github
search-ticketsSearch tickets with Zendesk search syntax.ActionπŸ”— Github
update-ticketUpdate an existing ticket and optionally add a commentActionπŸ”— Github

Users

Function nameDescriptionTypeSource code
create-userCreate a user in Zendesk Support.ActionπŸ”— Github
delete-userDelete a Zendesk userActionπŸ”— Github
get-userRetrieve a user by ID.ActionπŸ”— Github
list-usersList users in Zendesk Support.ActionπŸ”— Github
update-userUpdate an existing user.ActionπŸ”— Github

Views

Function nameDescriptionTypeSource code
list-viewsList ticket views for the accountActionπŸ”— Github

Others

Function nameDescriptionTypeSource code
articlesSync Zendesk Help Center articlesSyncπŸ”— Github
categoriesSync Zendesk Help Center categoriesSyncπŸ”— Github
macrosSync ticket macros from ZendeskSyncπŸ”— Github
organizationsSync organizations from Zendesk using incremental exportSyncπŸ”— Github
sectionsSync Zendesk Help Center sectionsSyncπŸ”— Github
ticket-commentsSync comments for tickets in scopeSyncπŸ”— Github
ticket-fieldsSync ticket field definitions from ZendeskSyncπŸ”— Github
ticket-formsSync ticket forms from ZendeskSyncπŸ”— Github
ticketsSync tickets from Zendesk SupportSyncπŸ”— Github
usersSync users from Zendesk Support using incremental cursor-based exportsSyncπŸ”— Github
viewsSync ticket views from ZendeskSyncπŸ”— Github