Fetches a single ticket by its public_id. Returns the same shape as a list entry plus extended fields (assignee, category, tags, conversation reference).
Required ability: Tickets-Show
Rate limit: 40 requests / minute
GET
/Company/Support/Tickets/{public_id}
curl \
--request GET 'https://velents-agents.velents.ai/Company/Support/Tickets/tkt_01HX...' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": {
"public_id": "tkt_01HX...",
"subject": "New support ticket",
"status": "human_pending",
"priority": "normal",
"identifier": "ORD-12345",
"conversation_id": "cnv_01HX...",
"created_at": "2026-05-06T10:14:00Z",
"assignee": {},
"category": {},
"tags": [
"string"
]
}
}