Skip to main content
Server path: /zendesk-tickets | Type: Application | PCID required: Yes

Tools

ToolDescription
zendesk_tickets_add_ticket_tagsAdd Tags
zendesk_tickets_bulk_delete_ticketsBulk Delete Tickets
zendesk_tickets_count_ticket_commentsCount Ticket Comments
zendesk_tickets_count_ticketsCount Tickets
zendesk_tickets_create_manyCreate Many Tickets
zendesk_tickets_create_ticketCreate Ticket
zendesk_tickets_delete_ticketDelete Ticket
zendesk_tickets_get_ticketShow Ticket
zendesk_tickets_list_deleted_ticketsList Deleted Tickets
zendesk_tickets_list_organization_ticketsList Organization Tickets
zendesk_tickets_list_recent_ticketsList Recent Tickets
zendesk_tickets_list_satisfaction_ratingsList Satisfaction Ratings
zendesk_tickets_list_ticket_collaboratorsList Collaborators for a Ticket
zendesk_tickets_list_ticket_commentsList Comments
zendesk_tickets_list_ticket_followersList Followers for a Ticket
zendesk_tickets_list_ticket_problemsList Ticket Problems
zendesk_tickets_list_ticket_tagsList Resource Tags
zendesk_tickets_list_ticketsList Tickets
zendesk_tickets_list_tickets_with_commentsFetch multiple tickets and their comments in a single call (max 500 ticket IDs). Handles large volumes by chunking ticket fetches (100 per show_many call) and fetching comments serially to respect Zendesk rate limits. Failed tickets are recorded in metadata but do not abort the batch.
zendesk_tickets_list_user_assigned_ticketsList User Assigned Tickets
zendesk_tickets_list_user_requested_ticketsList User Requested Tickets
zendesk_tickets_make_ticket_comment_privateMake Comment Private
zendesk_tickets_merge_tickets_into_target_ticketMerge Tickets into Target Ticket
zendesk_tickets_remove_ticket_tagsRemove Tags
zendesk_tickets_restore_deleted_ticketRestore a Previously Deleted Ticket
zendesk_tickets_searchList Search Results
zendesk_tickets_search_exportExport Search Results
zendesk_tickets_set_ticket_tagsSet Tags
zendesk_tickets_show_attachmentShow Attachment
zendesk_tickets_show_manyShow Multiple Tickets
zendesk_tickets_show_satisfaction_ratingShow Satisfaction Rating
zendesk_tickets_show_ticket_metrics_by_ticketShow Ticket Metrics By Ticket
zendesk_tickets_ticket_related_informationTicket Related Information
zendesk_tickets_update_manyUpdate Many Tickets
zendesk_tickets_update_ticketUpdate Ticket

zendesk_tickets_add_ticket_tags

Add Tags Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

zendesk_tickets_bulk_delete_tickets

Bulk Delete Tickets Parameters:
ParameterTypeRequiredDefaultDescription
idsstringYesComma-separated list of ticket ids

zendesk_tickets_count_ticket_comments

Count Ticket Comments Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

zendesk_tickets_count_tickets

Count Tickets

zendesk_tickets_create_many

Create Many Tickets Parameters:
ParameterTypeRequiredDefaultDescription
ticketsobject[]NoThe tickets value

zendesk_tickets_create_ticket

Create Ticket Parameters:
ParameterTypeRequiredDefaultDescription
includestringNoSideloads to include in the response. Accepts a comma-separated list of values. See Sideloading.
system_metadataobjectNoSystem metadata for the request, typically set by internal clients
ticketobjectNoThe ticket value

zendesk_tickets_delete_ticket

Delete Ticket Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

zendesk_tickets_get_ticket

Show Ticket Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket
includestringNoSideloads to include in the response. Accepts a comma-separated list of values. See Sideloading.
reduced_payload_sizebooleanNoWhen true, returns a reduced ticket payload (omits null custom fields).
remove_duplicate_fieldsbooleanNoWhen true, removes duplicate custom field entries from the response.

zendesk_tickets_list_deleted_tickets

List Deleted Tickets Parameters:
ParameterTypeRequiredDefaultDescription
sort_bystringNoSort by
sort_orderstringNoSort order. Defaults to “asc”
support_type_scopestringNoLists tickets by support type. Possible values are “all”, “agent”, or “ai_agent”. Defaults to “agent”
pageobjectNoPagination parameter. Supports both traditional offset and cursor-based pagination: - Traditional: ?page=2 (integer page number) - Cursor: ?page[size]=50&page[after]=cursor (deepObject with size, after, before) These are mutually exclusive - use one format or the other, not both.
per_pageintegerNoNumber of records to return per page. Note: Default and maximum values vary by endpoint. Check endpoint-specific documentation for limits.

zendesk_tickets_list_organization_tickets

List Organization Tickets Parameters:
ParameterTypeRequiredDefaultDescription
organization_idintegerYesThe ID of an organization

zendesk_tickets_list_recent_tickets

List Recent Tickets

zendesk_tickets_list_satisfaction_ratings

List Satisfaction Ratings Parameters:
ParameterTypeRequiredDefaultDescription
pageobjectNoPagination parameter. Supports both traditional offset and cursor-based pagination: - Traditional: ?page=2 (integer page number) - Cursor: ?page[size]=50&page[after]=cursor (deepObject with size, after, before) These are mutually exclusive - use one format or the other, not both.
per_pageintegerNoNumber of records to return per page. Note: Default and maximum values vary by endpoint. Check endpoint-specific documentation for limits.
sortstringNoField to sort results by. Prefix with - for descending order. When used with cursor pagination, this determines the cursor ordering. Example: ?sort=name or ?sort=-created_at

zendesk_tickets_list_ticket_collaborators

List Collaborators for a Ticket Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

zendesk_tickets_list_ticket_comments

List Comments Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket
include_inline_imagesbooleanNoDefault is false. When true, inline images are also listed as attachments in the response
includestringNoAccepts “users”. Use this parameter to list email CCs by side-loading users. Example: ?include=users. Note: If the comment source is email, a deleted user will be represented as the CCd email address. If the comment source is anything else, a deleted user will be represented as the user name.
per_pageintegerNoNumber of records to return per page. Note: Default and maximum values vary by endpoint. Check endpoint-specific documentation for limits.
sort_orderstringNoSort order. Defaults to “asc”
pageobjectNoCursor-based pagination parameters (JSON:API style). Supports nested parameters: - page[size] - Number of records per page (default varies by endpoint, typically 100) - page[after] - Cursor token to fetch records after this position - page[before] - Cursor token to fetch records before this position Example: ?page[size]=50&page[after]=eyJvIjoiaWQiLCJ2IjoiYVFFPSJ9

zendesk_tickets_list_ticket_followers

List Followers for a Ticket Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

zendesk_tickets_list_ticket_problems

List Ticket Problems Parameters:
ParameterTypeRequiredDefaultDescription
pageobjectNoPagination parameter. Supports both traditional offset and cursor-based pagination: - Traditional: ?page=2 (integer page number) - Cursor: ?page[size]=50&page[after]=cursor (deepObject with size, after, before) These are mutually exclusive - use one format or the other, not both.
per_pageintegerNoNumber of records to return per page. Note: Default and maximum values vary by endpoint. Check endpoint-specific documentation for limits.
sortstringNoField to sort results by. Prefix with - for descending order. When used with cursor pagination, this determines the cursor ordering. Example: ?sort=name or ?sort=-created_at
include_boundary_indicatorsbooleanNoWhen true, includes has_more indicator in the cursor pagination response meta. Only valid with cursor pagination (page[size], page[after], page[before]).
include_item_cursorsbooleanNoWhen true, includes cursor values for each item in the cursor pagination response. Only valid with cursor pagination (page[size], page[after], page[before]).

zendesk_tickets_list_ticket_tags

List Resource Tags Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

zendesk_tickets_list_tickets

List Tickets Parameters:
ParameterTypeRequiredDefaultDescription
external_idstringNoLists tickets by external id. External ids don’t have to be unique for each ticket. As a result, the request may return multiple tickets with the same external id.
sort_bystringNoSort by
sort_orderstringNoSort order. Defaults to “asc”
support_type_scopestringNoLists tickets by support type. Possible values are “all”, “agent”, or “ai_agent”. Defaults to “agent”
pageobjectNoPagination parameter. Supports both traditional offset and cursor-based pagination: - Traditional: ?page=2 (integer page number) - Cursor: ?page[size]=50&page[after]=cursor (deepObject with size, after, before) These are mutually exclusive - use one format or the other, not both.
per_pageintegerNoNumber of records to return per page. Note: Default and maximum values vary by endpoint. Check endpoint-specific documentation for limits.
sortstringNoField to sort results by. Prefix with - for descending order. When used with cursor pagination, this determines the cursor ordering. Example: ?sort=name or ?sort=-created_at
includestringNoSideloads to include in the response. Accepts a comma-separated list of values. See Sideloading.
start_timeintegerNoUnix epoch time to filter tickets. Only tickets created or updated after this time are returned. Example: ?start_time=1332034771

zendesk_tickets_list_tickets_with_comments

Fetch multiple tickets and their comments in a single call (max 500 ticket IDs). Handles large volumes by chunking ticket fetches (100 per show_many call) and fetching comments serially to respect Zendesk rate limits. Failed tickets are recorded in metadata but do not abort the batch. Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idsinteger[]YesList of ticket IDs to fetch (max 500)
max_comments_per_ticketintegerNoMaximum number of comments to return per ticket (default: 100)

zendesk_tickets_list_user_assigned_tickets

List User Assigned Tickets Parameters:
ParameterTypeRequiredDefaultDescription
user_idintegerYesThe id of the user

zendesk_tickets_list_user_requested_tickets

List User Requested Tickets Parameters:
ParameterTypeRequiredDefaultDescription
user_idintegerYesThe id of the user
sort_bystringNoSort by
sort_orderstringNoSort order. Defaults to “asc”
pageobjectNoPagination parameter. Supports both traditional offset and cursor-based pagination: - Traditional: ?page=2 (integer page number) - Cursor: ?page[size]=50&page[after]=cursor (deepObject with size, after, before) These are mutually exclusive - use one format or the other, not both.
per_pageintegerNoNumber of records to return per page. Note: Default and maximum values vary by endpoint. Check endpoint-specific documentation for limits.
includestringNoSideloads to include in the response. Accepts a comma-separated list of values. See Sideloading.
exclude_archivedbooleanNoIf true, excludes archived tickets from the results.
exclude_countbooleanNoIf true, excludes the total count from the results.

zendesk_tickets_make_ticket_comment_private

Make Comment Private Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket
ticket_comment_idintegerYesThe ID of the ticket comment

zendesk_tickets_merge_tickets_into_target_ticket

Merge Tickets into Target Ticket Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket
idsinteger[]YesIds of tickets to merge into the target ticket
source_commentstringNoPrivate comment to add to the source ticket
source_comment_is_publicbooleanNoWhether comment in source tickets are public or private
target_commentstringNoPrivate comment to add to the target ticket
target_comment_is_publicbooleanNoWhether comment in target ticket is public or private

zendesk_tickets_remove_ticket_tags

Remove Tags Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket
tagsstringNoComma-separated list of tags to remove from the ticket.

zendesk_tickets_restore_deleted_ticket

Restore a Previously Deleted Ticket Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

List Search Results Parameters:
ParameterTypeRequiredDefaultDescription
querystringYesThe search query. See Query basics above. For details on the query syntax, see the Zendesk Support search reference
sort_bystringNoOne of updated_at, created_at, priority, status, or ticket_type. Defaults to sorting by relevance
sort_orderstringNoOne of asc or desc. Defaults to desc
includestringNoSideloads to include in the response. Accepts a comma-separated list of values. The available sideloads depend on the search result types.

zendesk_tickets_search_export

Export Search Results Parameters:
ParameterTypeRequiredDefaultDescription
querystringYesThe search query. See Query basics above. For details on the query syntax, see the Zendesk Support search reference
page[size]integerNoThe number of results shown in a page.
page[after]stringNoThe cursor token for fetching the next page of results.
filter[type]stringNoThe object type returned by the export query. Can be ticket, organization, user, or group.
includestringNoSideloads to include in the response. Accepts a comma-separated list of values. The available sideloads depend on the search result types.

zendesk_tickets_set_ticket_tags

Set Tags Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

zendesk_tickets_show_attachment

Show Attachment Parameters:
ParameterTypeRequiredDefaultDescription
attachment_idintegerYesThe ID of the attachment

zendesk_tickets_show_many

Show Multiple Tickets Parameters:
ParameterTypeRequiredDefaultDescription
idsstringYesComma-separated list of ticket ids
includestringNoA comma-separated list of sideloads to include.

zendesk_tickets_show_satisfaction_rating

Show Satisfaction Rating Parameters:
ParameterTypeRequiredDefaultDescription
satisfaction_rating_idintegerYesThe id of the satisfaction rating to retrieve

zendesk_tickets_show_ticket_metrics_by_ticket

Show Ticket Metrics By Ticket Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

Ticket Related Information Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket

zendesk_tickets_update_many

Update Many Tickets Parameters:
ParameterTypeRequiredDefaultDescription
idsstringNoComma-separated list of ticket ids
bodyobjectYesTicket object for bulk updates (with ids query parameter) or array of ticket objects for batch updates

zendesk_tickets_update_ticket

Update Ticket Parameters:
ParameterTypeRequiredDefaultDescription
ticket_idintegerYesThe ID of the ticket
system_metadataobjectNoSystem metadata for the request, typically set by internal clients
ticketobjectNoThe ticket value