Support
Xquik support ticket API | get request details
Retrieve one support ticket by ID with subject, open or resolved status, complete message history, private attachments, and timestamps. See API fields.
- 200
- 401
- 404
- 429
GET
Xquik support ticket API | get request details
Choose one ticket history
Use this route when one ticket ID needs full message history. Use list for summaries across tickets. Use reply or update only when the conversation or status must change.Free - does not consume credits
Support tickets are free for all authenticated users.
Path parameters
string
required
The ticket public ID (e.g.
tkt_a1b2c3d4e5f6a1b2c3d4e5f6). Returned when you create a ticket or list tickets.Headers
string
required
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.
Response
200 OK
string
Unique ticket public ID.
string
Ticket subject.
string
Current status:
open, in_progress, resolved, or closed.string
ISO 8601 creation timestamp.
string
ISO 8601 last update timestamp.
object[]
Array of message objects, ordered chronologically.
string
Message content.
string
Who sent the message:
user or support.string
ISO 8601 timestamp of when the message was sent.
object[]
Private image and video attachments.
string
Attachment public ID.
string
Original filename.
string
Validated media type.
string
image or video.integer
File size in bytes.
string
ready, pending, or failed.string
Authenticated download path.
401 Unauthenticated
404 Not found
429 Rate limited
Retry-After value before fetching the ticket again.
Related. Support Media explains how agents should handle attachment statuses and downloads.
- 200
- 401
- 404
- 429
Xquik support ticket API | get request details