IntegrationsSentryActions
Get Sentry issue
Get one issue in the bound Sentry organization. Requires event:read.
issues.get · Sentry · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
issue_id | string | Yes | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 64 |
short_id | string | Yes | minLength 1; maxLength 100 |
title | string | Yes | maxLength 500 |
culprit | string | No | maxLength 500 |
level | string | No | maxLength 32 |
status | string | Yes | minLength 1; maxLength 64 |
substatus | string | No | minLength 1; maxLength 64 |
permalink | string | No | maxLength 2048 |
first_seen | string | No | minLength 1; maxLength 64 |
last_seen | string | No | minLength 1; maxLength 64 |
count | string | No | maxLength 32 |
user_count | integer | No | — |
project | object | Yes | additionalProperties false |
project.id | string | Yes | minLength 1; maxLength 64 |
project.slug | string | Yes | minLength 1; maxLength 100 |
project.name | string | No | minLength 1; maxLength 200 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"issue_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"issue_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"short_id": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"title": {
"type": "string",
"maxLength": 500
},
"culprit": {
"type": "string",
"maxLength": 500
},
"level": {
"type": "string",
"maxLength": 32
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"substatus": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"permalink": {
"type": "string",
"maxLength": 2048
},
"first_seen": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"last_seen": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"count": {
"type": "string",
"maxLength": 32
},
"user_count": {
"type": "integer"
},
"project": {
"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": [
"id",
"slug"
]
}
},
"required": [
"id",
"short_id",
"title",
"status",
"project"
]
}