List a Project's User Feedback
GET /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/user-feedback/
Return a list of user feedback items within this project.
This list does not include submissions from the User Feedback Widget. This is because it is based on an older format called User Reports - read more here. To return a list of user feedback items from the widget, please use the issue API with the filter issue.category:feedback
.*
Path Parameters
organization_id_or_slug
(string)REQUIREDThe ID or slug of the organization.
project_id_or_slug
(string)REQUIREDThe ID or slug of the project.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires one of the following scopes:project:read
Copied
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/user-feedback/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
Copied[ { "comments": "It broke!", "dateCreated": "2018-11-06T21:20:11.468Z", "email": "jane@example.com", "event": { "eventID": "14bad9a2e3774046977a21440ddb39b2", "id": null }, "eventID": "14bad9a2e3774046977a21440ddb39b2", "id": "1", "issue": null, "name": "Jane Smith", "user": null } ]