Support tickets
List tickets
GET/v1/tickets
Return a paginated list of support tickets.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
status |
query | string | Filter: open, pending, resolved, closed. |
limit |
query | integer | Page size, 1–100. Default 25. |
Request
curl --request GET \
--url https://api.sysos.app/v1/tickets \
--header "Authorization: Bearer ACCESS_TOKEN" \
--header "Content-Type: application/json"
Response 200 OK
{
"data": [
{
"id": "tkt_19f0c3",
"subject": "Cannot export invoice PDF",
"status": "open",
"priority": "high",
"requester": "ada@acme.com",
"created_at": "2026-03-01T08:10:00Z"
}
],
"has_more": false,
"next_cursor": null
}