Submit User Feedback

Submit and associate user feedback with an issue. Feedback must be received by the server no more than 30 minutes after the event was saved. Additionally, within 5 minutes of submitting feedback it may also be overwritten. This is useful in situations where you may need to retry sending a request due to network failures. If feedback is rejected due to a mutability threshold, a 409 status code will be returned. Note: Feedback may be submitted with DSN authentication (see auth documentation).

Path Parameters

organization_slug (string)
REQUIRED
The slug of the organization.
project_slug (string)
REQUIRED
The slug of the project.

Body Parameters

event_id (string)
REQUIRED
The event ID.
name (string)
REQUIRED
User's name.
email (string)
REQUIRED
User's email address.
comments (string)
REQUIRED
Comments supplied by user.

Scopes

<auth_token> requires the following scopes:
  • project:write
POST /api/0/projects/{organization_slug}/{project_slug}/user-feedback/
curl https://sentry.io/api/0/projects/{organization_slug}/{project_slug}/user-feedback/ \
 -H 'Authorization: Bearer <auth_token>' \
 -H 'Content-Type: application/json' \
 -d '{"event_id":"14bad9a2e3774046977a21440ddb39b2","name":"Jane Smith","email":"jane@example.com","comments":"It broke!"}'
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
}