List an Issue's Events
This endpoint lists an issue's events.
Path Parameters
issue_id
(string)REQUIREDThe ID of the issue to retrieve.
Query Parameters:
full
(boolean)If this is set to true then the event payload will include the full event body, including the stacktrace. Set to true to enable.
Scopes
You need to authenticate via bearer auth token.
<auth_token>
requires the following scopes:event:read
GET /api/0/issues/{issue_id}/events/
curl https://sentry.io/api/0/issues/{issue_id}/events/ \ -H 'Authorization: Bearer <auth_token>'
RESPONSESCHEMA
[
{
"eventID": "9fac2ceed9344f2bbfdd1fdacb0ed9b1",
"tags": [
{
"key": "browser",
"value": "Chrome 60.0"
},
{
"key": "device",
"value": "Other"
},
{
"key": "environment",
"value": "production"
},
{
"value": "fatal",
"key": "level"
},
{
"key": "os",
"value": "Mac OS X 10.12.6"
},
{
"value": "CPython 2.7.16",
"key": "runtime"
},
{
"key": "release",
"value": "17642328ead24b51867165985996d04b29310337"
},
{
"key": "server_name",
"value": "web1.example.com"
}
],
"dateCreated": "2020-09-11T17:46:36Z",
"user": null,
"message": "",
"title": "This is an example Python exception",
"id": "dfb1a2d057194e76a4186cc8a5271553",
"platform": "python",
"event.type": "error",
"groupID": "1889724436"
}
]