GET/api/v1/support/tickets?limit=10List support tickets visible to the token workspace.
Required scope: support:read
curl https://www.finkmesh.com/api/v1/support/tickets?limit=10 \ -H "Authorization: Bearer $FINKMESH_TOKEN"
{
"data": [
{
"id": "tkt_123",
"title": "API question",
"status": "open",
"priority": "normal"
}
],
"pagination": { "limit": 10, "hasMore": false, "nextCursor": null },
"requestId": "req_...",
"apiVersion": "2026-07-01"
}