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