Documentation Index
Fetch the complete documentation index at: https://docs.xquik.com/llms.txt
Use this file to discover all available pages before exploring further.
Free - does not consume credits
Support tickets are free for all authenticated users.
curl -X POST https://xquik.com/api/v1/support/tickets/tkt_a1b2c3d4e5f6a1b2c3d4e5f6/messages \
-H "x-api-key: xq_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"body": "That worked, thank you!"
}' | jq
Path parameters
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.
Must be application/json.
Body
Message content. 1-10,000 characters.
Response
201 Created
400 Invalid Input
401 Unauthenticated
404 Not Found
429 Rate Limited
Ticket public ID the message was added to.
{
"publicId": "tkt_a1b2c3d4e5f6a1b2c3d4e5f6"
}
{ "error": "invalid_input", "message": "Invalid input. Check the request body." }
Missing or invalid body field.{ "error": "unauthenticated", "message": "Authentication required. Provide a valid API key or bearer token." }
Missing or invalid API key.{ "error": "not_found", "message": "Resource not found." }
No ticket exists with this ID, or it belongs to a different account.{ "error": "rate_limit_exceeded", "message": "Too many requests. Try again later.", "retryAfter": 60 }
Wait for the Retry-After value before adding another reply.