IntegrationsSentryActions
List Sentry projects
List projects in the bound Sentry organization. Requires org:read or project:read.
projects.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 |
projects | array<object> | Yes | maxItems 100 |
projects[] | object | Yes | additionalProperties false |
projects[].id | string | Yes | minLength 1; maxLength 64 |
projects[].slug | string | Yes | minLength 1; maxLength 100 |
projects[].name | string | Yes | minLength 1; maxLength 200 |
projects[].platform | string | No | maxLength 100 |
projects[].status | string | No | minLength 1; maxLength 64 |
projects[].date_created | string | No | minLength 1; maxLength 64 |
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": {
"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
},
"platform": {
"type": "string",
"maxLength": 100
},
"status": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"date_created": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id",
"slug",
"name"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"projects"
]
}