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