IntegrationsSentryActions
List Sentry releases
List releases in the bound Sentry organization. Requires project:read. Commit payloads are omitted.
releases.list · Sentry · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
releases | array<object> | Yes | maxItems 100 |
releases[] | object | Yes | additionalProperties false |
releases[].version | string | Yes | minLength 1; maxLength 200 |
releases[].short_version | string | No | minLength 1; maxLength 200 |
releases[].date_created | string | Yes | minLength 1; maxLength 64 |
releases[].date_released | string | No | minLength 1; maxLength 64 |
releases[].first_event | string | No | minLength 1; maxLength 64 |
releases[].last_event | string | No | minLength 1; maxLength 64 |
releases[].new_groups | integer | No | — |
releases[].projects | array<object> | Yes | maxItems 100 |
releases[].projects[] | object | Yes | additionalProperties false |
releases[].projects[].id | string | No | minLength 1; maxLength 64 |
releases[].projects[].slug | string | Yes | minLength 1; maxLength 100 |
releases[].projects[].name | string | No | minLength 1; maxLength 200 |
next_cursor | string | No | minLength 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"
]
}