sentry_list_releases
Retrieve a list of releases for a specific project using the project slug/identifier, aiding in error monitoring and application health tracking.
Instructions
List releases for a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectSlug | Yes | Project slug/identifier |
Input Schema (JSON Schema)
{
"properties": {
"projectSlug": {
"description": "Project slug/identifier",
"type": "string"
}
},
"required": [
"projectSlug"
],
"type": "object"
}