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 |
|---|
tickets | array | Array of ticket objects |
paging | object | Pagination information |
↳ next_page | string | URL for next page of results |
↳ previous_page | string | URL for previous page of results |
↳ count | number | Total count of tickets |
metadata | object | Response metadata |
↳ total_returned | number | Number of tickets returned in this response |
↳ has_more | boolean | Whether more tickets are available |
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 |
|---|
ticket | object | Ticket object |
ticket_id | number | The ticket ID |
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 |
groupId | string | No | Group ID |
requesterId | string | No | Requester user ID |
customFields | string | No | Custom fields as JSON object (e.g., {"field_id": "value"}) |
| Parameter | Type | Description |
|---|
ticket | object | Created ticket object |
ticket_id | number | The created ticket ID |
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 |
|---|
job_status | object | Job status object |
job_id | string | The bulk operation job ID |
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 |
|---|
ticket | object | Updated ticket object |
ticket_id | number | The updated ticket ID |
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 |
|---|
job_status | object | Job status object |
job_id | string | The bulk operation job ID |
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 |
|---|
deleted | boolean | Deletion success |
ticket_id | string | The deleted ticket ID |
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 |
|---|
job_status | object | Job status object |
job_id | string | The merge job ID |
target_ticket_id | string | The target ticket ID that tickets were merged into |
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 |
|---|
users | array | Array of user objects |
paging | object | Pagination information |
↳ next_page | string | URL for next page of results |
↳ previous_page | string | URL for previous page of results |
↳ count | number | Total count of users |
metadata | object | Response metadata |
↳ total_returned | number | Number of users returned in this response |
↳ has_more | boolean | Whether more users are available |
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 |
|---|
user | object | User object |
user_id | number | The user ID |
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 |
|---|
user | object | Current user object |
user_id | number | The current user ID |
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 |
|---|
users | array | Array of user objects |
paging | object | Pagination information |
↳ next_page | string | URL for next page of results |
↳ previous_page | string | URL for previous page of results |
↳ count | number | Total count of users |
metadata | object | Response metadata |
↳ total_returned | number | Number of users returned in this response |
↳ has_more | boolean | Whether more users are available |
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 |
|---|
user | object | Created user object |
user_id | number | The created user ID |
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 |
|---|
job_status | object | Job status object |
job_id | string | The bulk operation job ID |
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 |
|---|
user | json | Updated user object |
user_id | number | The updated user ID |
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 |
|---|
job_status | object | Job status object |
job_id | string | The bulk operation job ID |
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 |
|---|
deleted | boolean | Deletion success |
user_id | string | The deleted user ID |
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 |
|---|
organizations | array | Array of organization objects |
paging | object | Pagination information |
↳ next_page | string | URL for next page of results |
↳ previous_page | string | URL for previous page of results |
↳ count | number | Total count of organizations |
metadata | object | Response metadata |
↳ total_returned | number | Number of organizations returned in this response |
↳ has_more | boolean | Whether more organizations are available |
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 |
|---|
organization | json | Organization object |
organization_id | number | The organization ID |
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 |
|---|
organizations | array | Array of organization objects |
paging | object | Pagination information |
↳ next_page | string | URL for next page of results |
↳ previous_page | string | URL for previous page of results |
↳ count | number | Total count of organizations |
metadata | object | Response metadata |
↳ total_returned | number | Number of organizations returned in this response |
↳ has_more | boolean | Whether more organizations are available |
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 |
|---|
organization | json | Created organization object |
organization_id | number | The created organization ID |
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 |
|---|
job_status | object | Job status object |
job_id | string | The bulk operation job ID |
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 |
|---|
organization | json | Updated organization object |
organization_id | number | The updated organization ID |
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 |
|---|
deleted | boolean | Whether the organization was successfully deleted |
organization_id | string | The deleted organization ID |
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 |
|---|
results | array | Array of result objects |
paging | object | Pagination information |
↳ next_page | string | URL for next page of results |
↳ previous_page | string | URL for previous page of results |
↳ count | number | Total count of results |
metadata | object | Response metadata |
↳ total_returned | number | Number of results returned in this response |
↳ has_more | boolean | Whether more results are available |
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 |
|---|
count | number | Number of matching results |