16ad4f8e3d97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-10244143882.9 KB
Feedback

Submit feedback

Submits product feedback about Sequenzy itself to the Sequenzy team - for example, when a workflow you or your user needed is not exposed via the API, CLI, or MCP server.

post/feedback

Request body

messagestring required

The feedback itself. Be specific about what was needed and what was missing or wrong.

category'missing_capability' | 'bug' | 'docs' | 'ux' | 'praise' | 'other'

Feedback category. Use missing_capability when a needed workflow is not supported. Defaults to other.

source'api' | 'cli' | 'mcp'

Where the feedback was submitted from. Defaults to api.

contextstring

Optional description of what you were trying to accomplish when you hit the gap.

userIntentstring

For bug or wrong-outcome reports - the user's request, verbatim or closely paraphrased. Omit personal data not needed to reproduce the problem.

expectedstring

What you expected to happen.

actualstring

What actually happened instead.

resourceIdsstring[]

IDs of the affected resources so the team can correlate the report with server logs.

Example request

{
  "message": "There is no endpoint to bulk-delete campaigns by label.",
  "userIntent": "Move the promo send to 9am Tuesday",
  "toolCalls": [
    {
      "tool": "update_campaign"
    }
  ],
  "resourceIds": [
    "cmp_123"
  ]
}

Response

Feedback received

successboolean
messagestring

Example response

{
  "success": true,
  "message": "Feedback received. The Sequenzy team reviews every submission."
}