Skip to main content
FuseFuse
IntegrationsSentryActions

List Sentry releases

List releases in the bound Sentry organization. Requires project:read. Commit payloads are omitted.

Agent markdown

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

Output

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

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "page_size": {
      "type": "integer",
      "minimum": 1,
      "maximum": 100
    },
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "releases": {
      "type": "array",
      "items": {
        "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"
        ]
      },
      "maxItems": 100
    },
    "next_cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  },
  "required": [
    "releases"
  ]
}