Skip to main content
FuseFuse
IntegrationsSentryActions

List Sentry issues

List issues in the bound Sentry organization with closed filters. Requires event:read. Callers cannot submit Sentry search syntax.

Agent markdown

issues.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
statusstringNoenum unresolved | resolved | ignored | all
project_idsarray<string>NomaxItems 20
project_ids[]stringYesminLength 1; maxLength 32; pattern ^[0-9]+$
environmentstringNominLength 1; maxLength 100
stats_periodstringNoenum 24h | 7d | 14d | 30d
sortstringNoenum date | new | freq | user
page_sizeintegerNominimum 1; maximum 100
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
issuesarray<object>YesmaxItems 100
issues[]objectYesadditionalProperties false
issues[].idstringYesminLength 1; maxLength 64
issues[].short_idstringYesminLength 1; maxLength 100
issues[].titlestringYesmaxLength 500
issues[].culpritstringNomaxLength 500
issues[].levelstringNomaxLength 32
issues[].statusstringYesminLength 1; maxLength 64
issues[].substatusstringNominLength 1; maxLength 64
issues[].permalinkstringNomaxLength 2048
issues[].first_seenstringNominLength 1; maxLength 64
issues[].last_seenstringNominLength 1; maxLength 64
issues[].countstringNomaxLength 32
issues[].user_countintegerNo
issues[].projectobjectYesadditionalProperties false
issues[].project.idstringYesminLength 1; maxLength 64
issues[].project.slugstringYesminLength 1; maxLength 100
issues[].project.namestringNominLength 1; maxLength 200
next_cursorstringNominLength 1; maxLength 512

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "unresolved",
        "resolved",
        "ignored",
        "all"
      ]
    },
    "project_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 32,
        "pattern": "^[0-9]+$"
      },
      "maxItems": 20
    },
    "environment": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    },
    "stats_period": {
      "type": "string",
      "enum": [
        "24h",
        "7d",
        "14d",
        "30d"
      ]
    },
    "sort": {
      "type": "string",
      "enum": [
        "date",
        "new",
        "freq",
        "user"
      ]
    },
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "issues": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "short_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 100
          },
          "title": {
            "type": "string",
            "maxLength": 500
          },
          "culprit": {
            "type": "string",
            "maxLength": 500
          },
          "level": {
            "type": "string",
            "maxLength": 32
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "substatus": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "permalink": {
            "type": "string",
            "maxLength": 2048
          },
          "first_seen": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "last_seen": {
            "type": "string",
            "minLength": 1,
            "maxLength": 64
          },
          "count": {
            "type": "string",
            "maxLength": 32
          },
          "user_count": {
            "type": "integer"
          },
          "project": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
              "id": {
                "type": "string",
                "minLength": 1,
                "maxLength": 64
              },
              "slug": {
                "type": "string",
                "minLength": 1,
                "maxLength": 100
              },
              "name": {
                "type": "string",
                "minLength": 1,
                "maxLength": 200
              }
            },
            "required": [
              "id",
              "slug"
            ]
          }
        },
        "required": [
          "id",
          "short_id",
          "title",
          "status",
          "project"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "issues"
  ]
}