Zendesk is a leading customer service and support platform that empowers organizations to efficiently manage support tickets, users, and organizations through a robust set of tools and APIs. The Zendesk integration in Sim lets your agents automate key support operations and synchronize your support data with the rest of your workflow.
With Zendesk in Sim, you can:
By leveraging Zendesk’s Sim integration, your automated workflows can seamlessly handle support ticket triage, user onboarding/offboarding, company management, and keep your support operations running smoothly. Whether you’re integrating support with product, CRM, or automation systems, Zendesk tools in Sim provide robust, programmatic control to power best-in-class support at scale.
Integrate Zendesk into the workflow. Can get tickets, get ticket, create ticket, create tickets bulk, update ticket, update tickets bulk, delete ticket, merge tickets, get users, get user, get current user, search users, create user, create users bulk, update user, update users bulk, delete user, get organizations, get organization, autocomplete organizations, create organization, create organizations bulk, update organization, delete organization, search, search count.
Retrieve a list of tickets from Zendesk with optional filtering
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain (e.g., "mycompany" for mycompany.zendesk.com) |
status | string | No | Filter by status (new, open, pending, hold, solved, closed) |
priority | string | No | Filter by priority (low, normal, high, urgent) |
type | string | No | Filter by type (problem, incident, question, task) |
assigneeId | string | No | Filter by assignee user ID |
organizationId | string | No | Filter by organization ID |
sortBy | string | No | Sort field (created_at, updated_at, priority, status) |
sortOrder | string | No | Sort order (asc or desc) |
perPage | string | No | Results per page (default: 100, max: 100) |
page | string | No | Page number |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Tickets data and metadata |
Get a single ticket by ID from Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
ticketId | string | Yes | Ticket ID to retrieve |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Ticket data |
Create a new ticket in Zendesk with support for custom fields
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
subject | string | No | Ticket subject (optional - will be auto-generated if not provided) |
description | string | Yes | Ticket description (first comment) |
priority | string | No | Priority (low, normal, high, urgent) |
status | string | No | Status (new, open, pending, hold, solved, closed) |
type | string | No | Type (problem, incident, question, task) |
tags | string | No | Comma-separated tags |
assigneeId | string | No | Assignee user ID |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Created ticket data |
Create multiple tickets in Zendesk at once (max 100)
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
tickets | string | Yes | JSON array of ticket objects to create (max 100). Each ticket should have subject and comment properties. |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Bulk create job status |
Update an existing ticket in Zendesk with support for custom fields
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
ticketId | string | Yes | Ticket ID to update |
subject | string | No | New ticket subject |
comment | string | No | Add a comment to the ticket |
priority | string | No | Priority (low, normal, high, urgent) |
status | string | No | Status (new, open, pending, hold, solved, closed) |
type | string | No | Type (problem, incident, question, task) |
tags | string | No | Comma-separated tags |
assigneeId | string | No | Assignee user ID |
groupId | string | No | Group ID |
customFields | string | No | Custom fields as JSON object |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Updated ticket data |
Update multiple tickets in Zendesk at once (max 100)
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
ticketIds | string | Yes | Comma-separated ticket IDs to update (max 100) |
status | string | No | New status for all tickets |
priority | string | No | New priority for all tickets |
assigneeId | string | No | New assignee ID for all tickets |
groupId | string | No | New group ID for all tickets |
tags | string | No | Comma-separated tags to add to all tickets |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Bulk update job status |
Delete a ticket from Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
ticketId | string | Yes | Ticket ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Delete confirmation |
Merge multiple tickets into a target ticket
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
targetTicketId | string | Yes | Target ticket ID (tickets will be merged into this one) |
sourceTicketIds | string | Yes | Comma-separated source ticket IDs to merge |
targetComment | string | No | Comment to add to target ticket after merge |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Merge job status |
Retrieve a list of users from Zendesk with optional filtering
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain (e.g., "mycompany" for mycompany.zendesk.com) |
role | string | No | Filter by role (end-user, agent, admin) |
permissionSet | string | No | Filter by permission set ID |
perPage | string | No | Results per page (default: 100, max: 100) |
page | string | No | Page number |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Users data and metadata |
Get a single user by ID from Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
userId | string | Yes | User ID to retrieve |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | User data |
Get the currently authenticated user from Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Current user data |
Search for users in Zendesk using a query string
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
query | string | No | Search query string |
externalId | string | No | External ID to search by |
perPage | string | No | Results per page (default: 100, max: 100) |
page | string | No | Page number |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Users search results |
Create a new user in Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
name | string | Yes | User name |
userEmail | string | No | User email |
role | string | No | User role (end-user, agent, admin) |
phone | string | No | User phone number |
organizationId | string | No | Organization ID |
verified | string | No | Set to "true" to skip email verification |
tags | string | No | Comma-separated tags |
customFields | string | No | Custom fields as JSON object (e.g., {"field_id": "value"}) |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Created user data |
Create multiple users in Zendesk using bulk import
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
users | string | Yes | JSON array of user objects to create |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Bulk creation job status |
Update an existing user in Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
userId | string | Yes | User ID to update |
name | string | No | New user name |
userEmail | string | No | New user email |
role | string | No | User role (end-user, agent, admin) |
phone | string | No | User phone number |
organizationId | string | No | Organization ID |
verified | string | No | Set to "true" to mark user as verified |
tags | string | No | Comma-separated tags |
customFields | string | No | Custom fields as JSON object |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Updated user data |
Update multiple users in Zendesk using bulk update
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
users | string | Yes | JSON array of user objects to update (must include id field) |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Bulk update job status |
Delete a user from Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
userId | string | Yes | User ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Deleted user data |
Retrieve a list of organizations from Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain (e.g., "mycompany" for mycompany.zendesk.com) |
perPage | string | No | Results per page (default: 100, max: 100) |
page | string | No | Page number |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Organizations data and metadata |
Get a single organization by ID from Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
organizationId | string | Yes | Organization ID to retrieve |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Organization data |
Autocomplete organizations in Zendesk by name prefix (for name matching/autocomplete)
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
name | string | Yes | Organization name to search for |
perPage | string | No | Results per page (default: 100, max: 100) |
page | string | No | Page number |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Organizations search results |
Create a new organization in Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
name | string | Yes | Organization name |
domainNames | string | No | Comma-separated domain names |
details | string | No | Organization details |
notes | string | No | Organization notes |
tags | string | No | Comma-separated tags |
customFields | string | No | Custom fields as JSON object (e.g., {"field_id": "value"}) |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Created organization data |
Create multiple organizations in Zendesk using bulk import
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
organizations | string | Yes | JSON array of organization objects to create |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Bulk creation job status |
Update an existing organization in Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
organizationId | string | Yes | Organization ID to update |
name | string | No | New organization name |
domainNames | string | No | Comma-separated domain names |
details | string | No | Organization details |
notes | string | No | Organization notes |
tags | string | No | Comma-separated tags |
customFields | string | No | Custom fields as JSON object |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Updated organization data |
Delete an organization from Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
organizationId | string | Yes | Organization ID to delete |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Deleted organization data |
Unified search across tickets, users, and organizations in Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
query | string | Yes | Search query string |
sortBy | string | No | Sort field (relevance, created_at, updated_at, priority, status, ticket_type) |
sortOrder | string | No | Sort order (asc or desc) |
perPage | string | No | Results per page (default: 100, max: 100) |
page | string | No | Page number |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Search results |
Count the number of search results matching a query in Zendesk
| Parameter | Type | Required | Description |
|---|
email | string | Yes | Your Zendesk email address |
apiToken | string | Yes | Zendesk API token |
subdomain | string | Yes | Your Zendesk subdomain |
query | string | Yes | Search query string |
| Parameter | Type | Description |
|---|
success | boolean | Operation success status |
output | object | Search count result |
- Category:
tools
- Type:
zendesk