All requests below will use this key. Your API key is sent directly to api.cueapi.ai and never stored by the docs site.
POST
/v1/supportSubmit Support Request
Submit a support request. Creates a GitHub issue and stores a ticket for tracking.
subjectstringrequiredbodyBrief description of your issue (10-200 characters).
messagestringrequiredbodyDetailed description of the problem or question (30-5000 characters).
severitystringdefault: mediumbodySeverity level: "low", "medium", "high".
typestringdefault: bugbodyTicket type: "bug" or "feature-request".
Request
bash
curl -X POST https://api.cueapi.ai/v1/support \
-H "Authorization: Bearer cue_sk_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"subject": "Webhook not firing",
"message": "My cue cue_abc123 has not fired in 2 hours despite being active.",
"severity": "high",
"type": "bug"
}'Response
json
{
"status": "received",
"ticket_id": 24,
"ticket_status": "open",
"message": "Your support request has been received. We'll get back to you at your email address."
}Note
Rate limited to 5 requests per hour per user. Account must be older than 1 hour and have at least one active cue.
POST
Try it/v1/supportRequest Body
Enter your API key above to send requests