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. Sends an email to the CueAPI team.
subjectstringrequiredbodyBrief description of your issue.
messagestringrequiredbodyDetailed description of the problem or question.
severitystringdefault: mediumbodySeverity level: "low", "medium", "high", "critical".
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"
}'Response
json
{
"message": "Support request submitted",
"reference": "sup_a1b2c3d4"
}Note
Rate limited to 5 requests per hour per user.
POST
Try it/v1/supportRequest Body
Enter your API key above to send requests