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)REQUIREDThe slug of the organization.
project_slug
(string)REQUIREDThe slug of the project.
Body Parameters
event_id
(string)REQUIREDThe event ID. This can be retrieved from the beforeSend callback.
name
(string)REQUIREDUser's name.
email
(string)REQUIREDUser's email address.
comments
(string)REQUIREDComments supplied by user.
Scopes
You need to authenticate via bearer auth token.
<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
}