List a Project's User Feedback

GET /api/0/projects/{organization_slug}/{project_slug}/user-feedback/

Return a list of user feedback items within this project.

Path Parameters

organization_slug (string)
REQUIRED

The slug of the organization.

project_slug (string)
REQUIRED

The slug of the project.

Scopes

<auth_token> requires one of the following scopes:
  • project:read
curl https://sentry.io/api/0/projects/{organization_slug}/{project_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
  }
]