Get all tickets
Ticket
Get all tickets
Get all tickets in a project with support for filtering, sorting, and pagination.
Filtering:
- Filter by type:
type=BUGortype=BUG,FEATURE_REQUEST - Filter by status:
status=OPEN - Filter by priority:
priority=HIGHorpriority=HIGH,MEDIUM - Filter by archived state: archived tickets are hidden by default; pass
ignoreArchived=trueto include them, orignoreArchived=true&archived=truefor archived tickets only - Filter by spam:
isSpam=false - Filter the archive by archive date:
startDate/endDate(ISO 8601) narrow the archive, spam and waiting-on-customer views to tickets archived within that range. Ignored on the non-archive views, wherearchivedAtis unset.
Sorting:
- Sort by creation date:
sort=-createdAt(newest first) orsort=createdAt(oldest first) - Sort by priority:
sort=priority(highest first: HIGH, MEDIUM, LOW) orsort=-priority(lowest first) - Sort by updated date:
sort=-updatedAt - Default sort (no
sortparam): most recent activity first (lastNotificationdescending) - Archived, spam and waiting-on-customer views always sort by
archivedAtdescending; asortparam is ignored there
Pagination:
- Limit results:
limit=20(default: 500, max: 500) - Skip results:
skip=0(for pagination:skip=(page-1)*limit)
GET
Get all tickets