Skip to main content
FuseFuse
IntegrationsSentryActions

List Sentry issue events

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

Agent markdown

issue_events.list · 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
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

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