@@ -70,7 +70,7 @@ Retrieve a list of tickets from Zendesk with optional filtering
7070| ` sortBy ` | string | No | Sort field: "created_at", "updated_at", "priority", or "status" |
7171| ` sortOrder ` | string | No | Sort order: "asc" or "desc" |
7272| ` perPage ` | string | No | Results per page as a number string \( default: "100", max: "100"\) |
73- | ` page ` | string | No | Page number as a string \( e.g., "1", "2" \) |
73+ | ` pageAfter ` | string | No | Cursor from a previous response to fetch the next page of results |
7474
7575#### Output
7676
@@ -129,10 +129,10 @@ Retrieve a list of tickets from Zendesk with optional filtering
129129| ↳ ` from_messaging_channel ` | boolean | Whether the ticket originated from a messaging channel |
130130| ↳ ` ticket_form_id ` | number | Ticket form ID |
131131| ↳ ` generated_timestamp ` | number | Unix timestamp of the ticket generation |
132- | ` paging ` | object | Pagination information |
132+ | ` paging ` | object | Cursor-based pagination information |
133+ | ↳ ` after_cursor ` | string | Cursor for fetching the next page of results |
134+ | ↳ ` has_more ` | boolean | Whether more results are available |
133135| ↳ ` next_page ` | string | URL for next page of results |
134- | ↳ ` previous_page ` | string | URL for previous page of results |
135- | ↳ ` count ` | number | Total count of items |
136136| ` metadata ` | object | Response metadata |
137137| ↳ ` total_returned ` | number | Number of items returned in this response |
138138| ↳ ` has_more ` | boolean | Whether more items are available |
@@ -515,7 +515,7 @@ Retrieve a list of users from Zendesk with optional filtering
515515| ` role ` | string | No | Filter by role: "end-user", "agent", or "admin" |
516516| ` permissionSet ` | string | No | Filter by permission set ID as a numeric string \( e.g., "12345"\) |
517517| ` perPage ` | string | No | Results per page as a number string \( default: "100", max: "100"\) |
518- | ` page ` | string | No | Page number as a string \( e.g., "1", "2" \) |
518+ | ` pageAfter ` | string | No | Cursor from a previous response to fetch the next page of results |
519519
520520#### Output
521521
@@ -563,10 +563,10 @@ Retrieve a list of users from Zendesk with optional filtering
563563| ↳ ` shared ` | boolean | Whether the user is shared from a different Zendesk |
564564| ↳ ` shared_agent ` | boolean | Whether the agent is shared from a different Zendesk |
565565| ↳ ` remote_photo_url ` | string | URL to a remote photo |
566- | ` paging ` | object | Pagination information |
566+ | ` paging ` | object | Cursor-based pagination information |
567+ | ↳ ` after_cursor ` | string | Cursor for fetching the next page of results |
568+ | ↳ ` has_more ` | boolean | Whether more results are available |
567569| ↳ ` next_page ` | string | URL for next page of results |
568- | ↳ ` previous_page ` | string | URL for previous page of results |
569- | ↳ ` count ` | number | Total count of items |
570570| ` metadata ` | object | Response metadata |
571571| ↳ ` total_returned ` | number | Number of items returned in this response |
572572| ↳ ` has_more ` | boolean | Whether more items are available |
@@ -706,7 +706,7 @@ Search for users in Zendesk using a query string
706706| ` query ` | string | No | Search query string \( e.g., user name or email\) |
707707| ` externalId ` | string | No | External ID to search by \( your system identifier\) |
708708| ` perPage ` | string | No | Results per page as a number string \( default: "100", max: "100"\) |
709- | ` page ` | string | No | Page number as a string \( e.g., "1", "2" \) |
709+ | ` page ` | string | No | Page number for pagination \( 1-based \) |
710710
711711#### Output
712712
@@ -754,10 +754,10 @@ Search for users in Zendesk using a query string
754754| ↳ ` shared ` | boolean | Whether the user is shared from a different Zendesk |
755755| ↳ ` shared_agent ` | boolean | Whether the agent is shared from a different Zendesk |
756756| ↳ ` remote_photo_url ` | string | URL to a remote photo |
757- | ` paging ` | object | Pagination information |
757+ | ` paging ` | object | Cursor-based pagination information |
758+ | ↳ ` after_cursor ` | string | Cursor for fetching the next page of results |
759+ | ↳ ` has_more ` | boolean | Whether more results are available |
758760| ↳ ` next_page ` | string | URL for next page of results |
759- | ↳ ` previous_page ` | string | URL for previous page of results |
760- | ↳ ` count ` | number | Total count of items |
761761| ` metadata ` | object | Response metadata |
762762| ↳ ` total_returned ` | number | Number of items returned in this response |
763763| ↳ ` has_more ` | boolean | Whether more items are available |
@@ -999,7 +999,7 @@ Retrieve a list of organizations from Zendesk
999999| ` apiToken ` | string | Yes | Zendesk API token |
10001000| ` subdomain ` | string | Yes | Your Zendesk subdomain \( e.g., "mycompany" for mycompany.zendesk.com\) |
10011001| ` perPage ` | string | No | Results per page as a number string \( default: "100", max: "100"\) |
1002- | ` page ` | string | No | Page number as a string \( e.g., "1", "2" \) |
1002+ | ` pageAfter ` | string | No | Cursor from a previous response to fetch the next page of results |
10031003
10041004#### Output
10051005
@@ -1020,10 +1020,10 @@ Retrieve a list of organizations from Zendesk
10201020| ↳ ` created_at ` | string | When the organization was created \( ISO 8601 format\) |
10211021| ↳ ` updated_at ` | string | When the organization was last updated \( ISO 8601 format\) |
10221022| ↳ ` external_id ` | string | External ID for linking to external records |
1023- | ` paging ` | object | Pagination information |
1023+ | ` paging ` | object | Cursor-based pagination information |
1024+ | ↳ ` after_cursor ` | string | Cursor for fetching the next page of results |
1025+ | ↳ ` has_more ` | boolean | Whether more results are available |
10241026| ↳ ` next_page ` | string | URL for next page of results |
1025- | ↳ ` previous_page ` | string | URL for previous page of results |
1026- | ↳ ` count ` | number | Total count of items |
10271027| ` metadata ` | object | Response metadata |
10281028| ↳ ` total_returned ` | number | Number of items returned in this response |
10291029| ↳ ` has_more ` | boolean | Whether more items are available |
@@ -1075,7 +1075,7 @@ Autocomplete organizations in Zendesk by name prefix (for name matching/autocomp
10751075| ` subdomain ` | string | Yes | Your Zendesk subdomain |
10761076| ` name ` | string | Yes | Organization name prefix to search for \( e.g., "Acme"\) |
10771077| ` perPage ` | string | No | Results per page as a number string \( default: "100", max: "100"\) |
1078- | ` page ` | string | No | Page number as a string \( e.g., "1", "2" \) |
1078+ | ` page ` | string | No | Page number for pagination \( 1-based \) |
10791079
10801080#### Output
10811081
@@ -1096,10 +1096,10 @@ Autocomplete organizations in Zendesk by name prefix (for name matching/autocomp
10961096| ↳ ` created_at ` | string | When the organization was created \( ISO 8601 format\) |
10971097| ↳ ` updated_at ` | string | When the organization was last updated \( ISO 8601 format\) |
10981098| ↳ ` external_id ` | string | External ID for linking to external records |
1099- | ` paging ` | object | Pagination information |
1099+ | ` paging ` | object | Cursor-based pagination information |
1100+ | ↳ ` after_cursor ` | string | Cursor for fetching the next page of results |
1101+ | ↳ ` has_more ` | boolean | Whether more results are available |
11001102| ↳ ` next_page ` | string | URL for next page of results |
1101- | ↳ ` previous_page ` | string | URL for previous page of results |
1102- | ↳ ` count ` | number | Total count of items |
11031103| ` metadata ` | object | Response metadata |
11041104| ↳ ` total_returned ` | number | Number of items returned in this response |
11051105| ↳ ` has_more ` | boolean | Whether more items are available |
@@ -1249,19 +1249,20 @@ Unified search across tickets, users, and organizations in Zendesk
12491249| ` apiToken ` | string | Yes | Zendesk API token |
12501250| ` subdomain ` | string | Yes | Your Zendesk subdomain |
12511251| ` query ` | string | Yes | Search query string using Zendesk search syntax \( e.g., "type:ticket status:open"\) |
1252+ | ` filterType ` | string | Yes | Resource type to search for: "ticket", "user", "organization", or "group" |
12521253| ` sortBy ` | string | No | Sort field: "relevance", "created_at", "updated_at", "priority", "status", or "ticket_type" |
12531254| ` sortOrder ` | string | No | Sort order: "asc" or "desc" |
12541255| ` perPage ` | string | No | Results per page as a number string \( default: "100", max: "100"\) |
1255- | ` page ` | string | No | Page number as a string \( e.g., "1", "2" \) |
1256+ | ` pageAfter ` | string | No | Cursor from a previous response to fetch the next page of results |
12561257
12571258#### Output
12581259
12591260| Parameter | Type | Description |
12601261| --------- | ---- | ----------- |
1261- | ` paging ` | object | Pagination information |
1262+ | ` paging ` | object | Cursor-based pagination information |
1263+ | ↳ ` after_cursor ` | string | Cursor for fetching the next page of results |
1264+ | ↳ ` has_more ` | boolean | Whether more results are available |
12621265| ↳ ` next_page ` | string | URL for next page of results |
1263- | ↳ ` previous_page ` | string | URL for previous page of results |
1264- | ↳ ` count ` | number | Total count of items |
12651266| ` metadata ` | object | Response metadata |
12661267| ↳ ` total_returned ` | number | Number of items returned in this response |
12671268| ↳ ` has_more ` | boolean | Whether more items are available |
0 commit comments