Skip to main content
FuseFuse
IntegrationsSentryActions

Get Sentry issue event

Get one event for an issue. Requires event:read. Event payloads omit cookies, headers, stack locals, and raw contexts.

Agent markdown

issue_events.get · Sentry · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

None

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
issue_idstringYesminLength 1; maxLength 64
event_idstringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 64
event_idstringYesminLength 1; maxLength 64
titlestringNomaxLength 500
messagestringNomaxLength 4000
date_createdstringNominLength 1; maxLength 64
platformstringNomaxLength 100
tagsarray<object>YesmaxItems 100
tags[]objectYesadditionalProperties false
tags[].keystringYesminLength 1; maxLength 200
tags[].valuestringYesmaxLength 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"
  ]
}