IntegrationsJiraActions
Get Jira project
Retrieve a Jira project by id or key.
projects.get · Jira · v1
Details
Scopes
read:jira-workoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
project_id_or_key | string | Yes | minLength 1; maxLength 64 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 64 |
key | string | Yes | minLength 1; maxLength 64 |
name | string | No | maxLength 255 |
project_type_key | string | No | maxLength 64 |
style | string | No | maxLength 64 |
simplified | boolean | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"project_id_or_key": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"project_id_or_key"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 255
},
"project_type_key": {
"type": "string",
"maxLength": 64
},
"style": {
"type": "string",
"maxLength": 64
},
"simplified": {
"type": "boolean"
}
},
"required": [
"id",
"key"
]
}