IntegrationsSentryActions
List Sentry issues
List issues in the bound Sentry organization with closed filters. Requires event:read. Callers cannot submit Sentry search syntax.
issues.list · Sentry · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
status | string | No | enum unresolved | resolved | ignored | all |
project_ids | array<string> | No | maxItems 20 |
project_ids[] | string | Yes | minLength 1; maxLength 32; pattern ^[0-9]+$ |
environment | string | No | minLength 1; maxLength 100 |
stats_period | string | No | enum 24h | 7d | 14d | 30d |
sort | string | No | enum date | new | freq | user |
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 |
issues | array<object> | Yes | maxItems 100 |
issues[] | object | Yes | additionalProperties false |
issues[].id | string | Yes | minLength 1; maxLength 64 |
issues[].short_id | string | Yes | minLength 1; maxLength 100 |
issues[].title | string | Yes | maxLength 500 |
issues[].culprit | string | No | maxLength 500 |
issues[].level | string | No | maxLength 32 |
issues[].status | string | Yes | minLength 1; maxLength 64 |
issues[].substatus | string | No | minLength 1; maxLength 64 |
issues[].permalink | string | No | maxLength 2048 |
issues[].first_seen | string | No | minLength 1; maxLength 64 |
issues[].last_seen | string | No | minLength 1; maxLength 64 |
issues[].count | string | No | maxLength 32 |
issues[].user_count | integer | No | — |
issues[].project | object | Yes | additionalProperties false |
issues[].project.id | string | Yes | minLength 1; maxLength 64 |
issues[].project.slug | string | Yes | minLength 1; maxLength 100 |
issues[].project.name | string | No | minLength 1; maxLength 200 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"status": {
"type": "string",
"enum": [
"unresolved",
"resolved",
"ignored",
"all"
]
},
"project_ids": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 32,
"pattern": "^[0-9]+$"
},
"maxItems": 20
},
"environment": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"stats_period": {
"type": "string",
"enum": [
"24h",
"7d",
"14d",
"30d"
]
},
"sort": {
"type": "string",
"enum": [
"date",
"new",
"freq",
"user"
]
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"issues": {
"type": "array",
"items": {
"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"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"issues"
]
}