123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- {
- "get": {
- "tags": ["Projects"],
- "description": "Return a list of user feedback items within this project.",
- "operationId": "List a Project's User Feedback",
- "parameters": [
- {
- "name": "organization_slug",
- "in": "path",
- "description": "The slug of the organization.",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "project_slug",
- "in": "path",
- "description": "The slug of the project.",
- "required": true,
- "schema": {
- "type": "string"
- }
- }
- ],
- "responses": {
- "200": {
- "description": "Success",
- "content": {
- "application/json": {
- "schema": {
- "type": "array",
- "items": {
- "$ref": "../../components/schemas/user-feedback.json#/UserFeedback"
- }
- },
- "example": [
- {
- "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
- }
- ]
- }
- }
- },
- "403": {
- "description": "Forbidden"
- },
- "404": {
- "description": "Not Found"
- }
- },
- "security": [
- {
- "auth_token": ["project:read"]
- }
- ]
- },
- "post": {
- "tags": ["Projects"],
- "description": "Submit and associate user feedback with an issue.\n\nFeedback must be received by the server no more than 30 minutes after the event was saved.\n\nAdditionally, 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.\n\nIf feedback is rejected due to a mutability threshold, a 409 status code will be returned.\n\nNote: Feedback may be submitted with DSN authentication (see auth documentation).",
- "operationId": "Submit User Feedback",
- "parameters": [
- {
- "name": "organization_slug",
- "in": "path",
- "description": "The slug of the organization.",
- "required": true,
- "schema": {
- "type": "string"
- }
- },
- {
- "name": "project_slug",
- "in": "path",
- "description": "The slug of the project.",
- "required": true,
- "schema": {
- "type": "string"
- }
- }
- ],
- "requestBody": {
- "content": {
- "application/json": {
- "schema": {
- "required": ["event_id", "name", "email", "comments"],
- "type": "object",
- "properties": {
- "event_id": {
- "type": "string",
- "description": "The event ID. This can be retrieved from the [beforeSend callback](https://docs.sentry.io/platforms/javascript/configuration/filtering/#using-beforesend)."
- },
- "name": {
- "type": "string",
- "description": "User's name."
- },
- "email": {
- "type": "string",
- "description": "User's email address."
- },
- "comments": {
- "type": "string",
- "description": "Comments supplied by user."
- }
- }
- },
- "example": {
- "event_id": "14bad9a2e3774046977a21440ddb39b2",
- "name": "Jane Schmidt",
- "email": "jane@empowerplant.io",
- "comments": "It broke!"
- }
- }
- },
- "required": false
- },
- "responses": {
- "200": {
- "description": "Success",
- "content": {
- "application/json": {
- "schema": {
- "$ref": "../../components/schemas/user-feedback.json#/UserFeedback"
- },
- "example": {
- "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
- }
- }
- }
- },
- "400": {
- "description": "Bad Input"
- },
- "403": {
- "description": "Forbidden"
- },
- "404": {
- "description": "The requested resource does not exist"
- },
- "409": {
- "description": "Conflict"
- }
- },
- "security": [
- {
- "auth_token": ["project:write"]
- },
- {
- "dsn": []
- }
- ]
- }
- }
|