Retrieve a ticket

GET https://api.tamio.com/v2/tickets/retrieve/{uuid}

Retrieves a single support ticket by UUID with full details including status, assigned teammate, customer information, conversation history (replies), domain, and language.

Path Parameters

uuid string*

UUID of the ticket to retrieve

Responses

200 Ticket retrieved successfully

Ticket retrieved successfully

status integer
ticket Ticket
400 Bad request. Possible `error_code` values:
401 Missing or invalid API key
/tickets/retrieve/{uuid}
1const response = await fetch("https://api.tamio.com/v2/tickets/retrieve/{uuid}", {
2 headers: {
3 "Authorization": "Bearer YOUR_API_KEY",
4 "Accept": "application/json"
5 }
6});
7const data = await response.json();
Responses
{
  "status": 200,
  "ticket": {
    "id": "string",
    "object": "ticket",
    "title": "Payment not processing",
    "is_open": true,
    "created_at": 1699123456,
    "updated_at": 1699123789,
    "customer": {},
    "teammate_id": "string",
    "replies": [],
    "domain_id": "string",
    "domain": "shop.example.com",
    "language": "en"
  }
}