IntegrationsSentryActions
Get Sentry project
Get one project in the bound Sentry organization by slug. Requires org:read or project:read.
projects.get · Sentry · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
project_slug | string | Yes | minLength 1; maxLength 100 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 64 |
slug | string | Yes | minLength 1; maxLength 100 |
name | string | Yes | minLength 1; maxLength 200 |
platform | string | No | maxLength 100 |
status | string | No | minLength 1; maxLength 64 |
date_created | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"project_slug": {
"type": "string",
"minLength": 1,
"maxLength": 100
}
},
"required": [
"project_slug"
]
}Output
{
"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"
]
}