list_tickets
Retrieve a complete chronological list of all tickets across the Zendesk instance. Supports pagination and sorting by creation date, priority, or status.
Instructions
List ALL tickets in the Zendesk instance (no filtering). Has no parameters for filtering by recipient, assignee, requester, status, tags, or dates — for any filtered query use search instead with operators like type:ticket recipient:<email> or type:ticket assignee:me status<solved. Use list_tickets only when you genuinely want the full chronological feed across all queues (e.g. for a global activity report). Supports pagination and sorting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | 1-based page number. Defaults to 1. | |
| per_page | No | Tickets per page, max 100. Defaults to 100. | |
| sort_by | No | Sort field — `created_at`, `updated_at`, `priority`, `status`, `id`. Defaults to `id` (insertion order) when omitted. | |
| sort_order | No | `desc` for newest-first, `asc` for oldest-first. Defaults to `asc`. |