Free — does not consume credits
Support tickets are free for all authenticated users.
curl -X PATCH https://xquik.com/api/v1/support/tickets/tkt_a1b2c3d4e5f6a1b2c3d4e5f6 \
-H "x-api-key: xq_YOUR_KEY_HERE" \
-H "Content-Type: application/json" \
-d '{
"status": "resolved"
}' | jq
Path parameters
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.
Must be application/json.
Body
New status. One of: open, resolved, closed. The in_progress status is set by support staff and cannot be set via the API.
Response
200 OK
400 Invalid Input
401 Unauthenticated
{
"publicId": "tkt_a1b2c3d4e5f6a1b2c3d4e5f6",
"status": "resolved"
}
{ "error": "invalid_input", "message": "Invalid input. Check the request body." }
Missing or invalid status value.{ "error": "unauthenticated", "message": "Authentication required. Provide a valid API key or bearer token." }
Missing or invalid API key.