Skip to main content
FuseFuse
IntegrationsSentryActions

Get Sentry release

Get one release by version in the bound organization. Requires project:read. Commit payloads are omitted.

Agent markdown

releases.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
versionstringYesminLength 1; maxLength 200

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
versionstringYesminLength 1; maxLength 200
short_versionstringNominLength 1; maxLength 200
date_createdstringYesminLength 1; maxLength 64
date_releasedstringNominLength 1; maxLength 64
first_eventstringNominLength 1; maxLength 64
last_eventstringNominLength 1; maxLength 64
new_groupsintegerNo
projectsarray<object>YesmaxItems 100
projects[]objectYesadditionalProperties false
projects[].idstringNominLength 1; maxLength 64
projects[].slugstringYesminLength 1; maxLength 100
projects[].namestringNominLength 1; maxLength 200

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "version": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    }
  },
  "required": [
    "version"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "version": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "short_version": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "date_created": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "date_released": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "first_event": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "last_event": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "new_groups": {
      "type": "integer"
    },
    "projects": {
      "type": "array",
      "items": {
        "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": [
          "slug"
        ]
      },
      "maxItems": 100
    }
  },
  "required": [
    "version",
    "date_created",
    "projects"
  ]
}