IntegrationsJiraActions
List Jira projects
List Jira Cloud projects visible to the connection.
projects.list · Jira · v1
Details
Scopes
read:jira-workoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
query | string | No | minLength 1; maxLength 200 |
start_at | integer | No | minimum 0; maximum 10000 |
max_results | integer | No | minimum 1; maximum 50 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
projects | array<object> | Yes | maxItems 50 |
projects[] | object | Yes | additionalProperties false |
projects[].id | string | Yes | minLength 1; maxLength 64 |
projects[].key | string | Yes | minLength 1; maxLength 64 |
projects[].name | string | No | maxLength 255 |
projects[].project_type_key | string | No | maxLength 64 |
projects[].style | string | No | maxLength 64 |
projects[].simplified | boolean | No | — |
start_at | integer | No | minimum 0; maximum 10000 |
max_results | integer | No | minimum 1; maximum 50 |
total | integer | No | minimum 0 |
is_last | boolean | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"query": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"start_at": {
"type": "integer",
"minimum": 0,
"maximum": 10000
},
"max_results": {
"type": "integer",
"minimum": 1,
"maximum": 50
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"projects": {
"type": "array",
"items": {
"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"
]
},
"maxItems": 50
},
"start_at": {
"type": "integer",
"minimum": 0,
"maximum": 10000
},
"max_results": {
"type": "integer",
"minimum": 1,
"maximum": 50
},
"total": {
"type": "integer",
"minimum": 0
},
"is_last": {
"type": "boolean"
}
},
"required": [
"projects"
]
}