GET
Tickets auflisten
/ticketsGibt eine paginierte Liste von Tickets mit optionaler Filterung zurück.
Häufige Anwendungsfälle
- Display a list of tickets in your application
- Build a custom dashboard showing ticket status
- Export tickets for reporting purposes
Parameter
Abfrageparameter
| Name | Typ | Beschreibung |
|---|---|---|
board_id | string | Filter by board ID |
status_id | string | Filter by status/column ID |
assignee_id | string | Filter by assignee ID |
priority | "low" | "medium" | "high" | "critical" | Filter by priority lowmediumhighcritical |
search | string | Search in title and description |
page | integer | Page number Standard: |
page_size | integer | Items per page Standard: |
Code-Beispiele
curl -X GET "https://api.qamaq.io/api/v1/tickets?page=1&page_size=20" \
-H "Authorization: Bearer qmq_your_api_key"Antworten
200List of tickets
Response Body
{
tickets:Ticket[]total:integerpage:integerpage_size:integerhas_more:boolean}