Feedback
Feedback endpoints let you collect customer input and manage feedback items tied to a project.
Authenticated routes require the Authorization: Bearer <api_key> header. Public feedback submissions support CORS and can be rate limited per project.
List feedback
Return all feedback items for a project.
GET
/api/v1/{organizationId}/projects/{projectId}/feedbackAuthenticated
Response
Submit feedback (public)
Collect feedback from customers without requiring authentication. This endpoint supports CORS and is rate limited when the project setting is enabled.
POST
/api/v1/{organizationId}/projects/{projectId}/feedbackPublic
Request body
Valid type values: BUG, FEATURE_REQUEST, IMPROVEMENT, QUESTION, PRAISE, OTHER.
Response
Get feedback
Retrieve a single feedback item by ID.
GET
/api/v1/{organizationId}/projects/{projectId}/feedback/{feedbackId}Authenticated
Response
Update feedback
Update feedback fields such as description or metadata.
PATCH
/api/v1/{organizationId}/projects/{projectId}/feedback/{feedbackId}Authenticated
Request body
Response
Delete feedback
Remove a feedback item from the project.
DELETE
/api/v1/{organizationId}/projects/{projectId}/feedback/{feedbackId}Authenticated