Submit User Feedback

POST /api/0/projects/{organization_slug}/{project_slug}/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. This can be retrieved from the beforeSend callback.

name (string)
REQUIRED

User's name.

email (string)
REQUIRED

User's email address.

comments (string)
REQUIRED

Comments supplied by user.

Scopes

<auth_token> requires one of the following scopes:
  • project:write
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 Schmidt","email":"jane@empowerplant.io","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
}