IntegrationsSentryActions
List Sentry issue events
List events for one issue. Requires event:read. Event payloads omit cookies, headers, stack locals, and raw contexts.
issue_events.list · Sentry · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
issue_id | string | Yes | minLength 1; maxLength 64 |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
events | array<object> | Yes | maxItems 100 |
events[] | object | Yes | additionalProperties false |
events[].id | string | Yes | minLength 1; maxLength 64 |
events[].event_id | string | Yes | minLength 1; maxLength 64 |
events[].title | string | No | maxLength 500 |
events[].message | string | No | maxLength 4000 |
events[].date_created | string | No | minLength 1; maxLength 64 |
events[].platform | string | No | maxLength 100 |
events[].tags | array<object> | Yes | maxItems 100 |
events[].tags[] | object | Yes | additionalProperties false |
events[].tags[].key | string | Yes | minLength 1; maxLength 200 |
events[].tags[].value | string | Yes | maxLength 1000 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"issue_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"issue_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"events": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"event_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"title": {
"type": "string",
"maxLength": 500
},
"message": {
"type": "string",
"maxLength": 4000
},
"date_created": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"platform": {
"type": "string",
"maxLength": 100
},
"tags": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"key": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"value": {
"type": "string",
"maxLength": 1000
}
},
"required": [
"key",
"value"
]
},
"maxItems": 100
}
},
"required": [
"id",
"event_id",
"tags"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"events"
]
}