v8

latestOpenAPI 3.1.1LicenseRef-Proprietaryraw.githubusercontent.com2026-05-19280916.6 KB
Feedback

Record product feedback

Records product feedback from the authenticated user, optionally linked to a workspace, project, run, and attempted tools. Mutating public API requests support an optional Idempotency-Key header for client retries; duplicate keys within two hours return idempotency_duplicate.

post/feedback

Request body

kind'feature_request' | 'bug' | 'technique_request' | 'missing_capability' required

Feedback kind

summarystring required

Short summary

detailstring required

Detailed description

attempted_toolsstring[]

Tools or capabilities attempted before submitting feedback

workspace_idstring

Workspace identifier

project_idstring

Project identifier

run_idstring

Run identifier

Example request

{
  "summary": "Need batch export support",
  "detail": "I want to export all generated campaign images at once.",
  "attempted_tools": [
    "generate_image"
  ],
  "workspace_id": "ws_abc123",
  "project_id": "prj_abc123",
  "run_id": "run_abc123"
}

Response

Feedback recorded.

feedback_idstring required

Feedback identifier

received_atinteger required

Example response

{
  "feedback_id": "fb_abc123"
}