---
title: "Submit feedback"
method: POST
path: "/feedback"
tags: ["Feedback"]
---

# Submit feedback

`POST /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.

## Request body

- object
  - `message` string, 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.
  - `context` string — Optional description of what you were trying to accomplish when you hit the gap.
  - `userIntent` string — For bug or wrong-outcome reports - the user's request, verbatim or closely paraphrased. Omit personal data not needed to reproduce the problem.
  - `toolCalls` object[] — For bug or wrong-outcome reports - the ordered API calls, CLI commands, or MCP tool calls that led to the problem. Summarize arguments; do not include raw subscriber data.
    - `tool` string, required — Tool, command, or endpoint name.
    - `args` string — Short summary of the arguments used.
    - `error` string — Error returned by this call, if any.
  - `expected` string — What you expected to happen.
  - `actual` string — What actually happened instead.
  - `resourceIds` string[] — IDs of the affected resources so the team can correlate the report with server logs.

## Response `200`

Feedback received

- object
  - `success` boolean
  - `message` string

## Other responses

- `400` — Validation error
- `401` — Unauthorized
- `403` — No company selected
- `500` — Feedback could not be delivered

---

[API](https://skmtc.net/sequenzy/apis/sequenzy-api.md) · [All operations](https://skmtc.net/sequenzy/apis/sequenzy-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sequenzy/sequenzy-api/revisions/fc5624c7d57a/schema)
