Skip to main content
FuseFuse
IntegrationsSentryActions

Get Sentry issue

Get one issue in the bound Sentry organization. Requires event:read.

Agent markdown

issues.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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYesminLength 1; maxLength 64
short_idstringYesminLength 1; maxLength 100
titlestringYesmaxLength 500
culpritstringNomaxLength 500
levelstringNomaxLength 32
statusstringYesminLength 1; maxLength 64
substatusstringNominLength 1; maxLength 64
permalinkstringNomaxLength 2048
first_seenstringNominLength 1; maxLength 64
last_seenstringNominLength 1; maxLength 64
countstringNomaxLength 32
user_countintegerNo
projectobjectYesadditionalProperties false
project.idstringYesminLength 1; maxLength 64
project.slugstringYesminLength 1; maxLength 100
project.namestringNominLength 1; maxLength 200

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "issue_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "issue_id"
  ]
}
Output
{
  "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"
  ]
}