fetch_tickets
Analyze support trends and customer sentiment by retrieving Zendesk tickets with full conversation transcripts, filterable by date range and status.
Instructions
Fetch Zendesk support tickets with full conversation transcripts for trend analysis. Filters by date range and ticket status. Returns ticket metadata (subject, status, priority, tags, dates) and the complete conversation transcript for each ticket. Use for analyzing support trends, common issues, and customer sentiment.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of tickets to return (default: 100, max: 1000). Higher limits take longer due to per-ticket comment fetching. | |
| status | No | Filter by ticket status. Provide one or more statuses. Example: ["open", "pending"]. If omitted, all statuses are returned. | |
| end_date | No | End date filter. Same formats as start_date. Only tickets created on or before this date are returned. Defaults to today if start_date is provided. | |
| start_date | No | Start date filter. Supports relative dates like "past month", "past week", "past 7 days", "today", "yesterday", or ISO dates like "2026-03-01". Only tickets created on or after this date are returned. |