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/support

Submit Support Request

Submit a support request. Sends an email to the CueAPI team.

subjectstringrequiredbody

Brief description of your issue.

messagestringrequiredbody

Detailed description of the problem or question.

severitystringdefault: mediumbody

Severity 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/v1/support
Try it
Request Body
Enter your API key above to send requests