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
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.
Example response
{
"feedback_id": "fb_abc123"
}