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.

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization.

project_id_or_slug (string)
REQUIRED

The ID or slug of the project.

Scopes

<auth_token> requires one of the following scopes:
  • project:read
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/user-feedback/ \
 -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
  {
    "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
  }
]