Skip to main content
POST
/
support
/
tickets
Create ticket
curl --request POST \
  --url https://xquik.com/api/v1/support/tickets \
  --header 'Content-Type: <content-type>' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "subject": "<string>",
  "body": "<string>"
}
'
Free — does not consume credits
Support tickets are free for all authenticated users.
curl -X POST https://xquik.com/api/v1/support/tickets \
  -H "x-api-key: xq_YOUR_KEY_HERE" \
  -H "Content-Type: application/json" \
  -d '{
    "subject": "Cannot connect X account",
    "body": "I keep getting a connection error when trying to link my account."
  }' | jq

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.
Content-Type
string
required
Must be application/json.

Body

subject
string
required
Ticket subject. 1-500 characters.
body
string
required
Initial message. 1-10,000 characters.

Response

publicId
string
Unique ticket public ID.
{
  "publicId": "tkt_a1b2c3d4e5f6a1b2c3d4e5f6"
}
Next steps: List Tickets to see all your tickets, Get Ticket to fetch details and message history, or Reply to Ticket to add a message.