IntegrationsJiraActions
Get Jira issue
Retrieve a Jira issue by id or key with an explicit field list.
issues.get · Jira · v1
Details
Scopes
read:jira-workoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
issue_id_or_key | string | Yes | minLength 1; maxLength 64 |
fields | array<string> | No | minItems 1; maxItems 12 |
fields[] | string | Yes | enum summary | status | assignee | reporter | issuetype | project | priority | description | labels | created | updated | parent |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 1; maxLength 64 |
key | string | Yes | minLength 1; maxLength 64 |
self | string | No | maxLength 2048 |
summary | string | No | maxLength 255 |
status | object | No | additionalProperties false |
status.id | string | No | minLength 1; maxLength 64 |
status.name | string | No | maxLength 128 |
status.category_key | string | No | maxLength 64 |
assignee | object | No | additionalProperties false |
assignee.account_id | string | No | minLength 1; maxLength 128 |
assignee.display_name | string | No | maxLength 255 |
assignee.active | boolean | No | — |
reporter | object | No | additionalProperties false |
reporter.account_id | string | No | minLength 1; maxLength 128 |
reporter.display_name | string | No | maxLength 255 |
reporter.active | boolean | No | — |
issuetype | object | No | additionalProperties false |
issuetype.id | string | No | minLength 1; maxLength 64 |
issuetype.key | string | No | minLength 1; maxLength 64 |
issuetype.name | string | No | maxLength 255 |
project | object | No | additionalProperties false |
project.id | string | No | minLength 1; maxLength 64 |
project.key | string | No | minLength 1; maxLength 64 |
project.name | string | No | maxLength 255 |
priority | object | No | additionalProperties false |
priority.id | string | No | minLength 1; maxLength 64 |
priority.key | string | No | minLength 1; maxLength 64 |
priority.name | string | No | maxLength 255 |
labels | array<string> | No | maxItems 50 |
labels[] | string | Yes | maxLength 255 |
description | object | No | additionalProperties false |
description.type | string | Yes | enum doc |
description.version | integer | Yes | minimum 1; maximum 1 |
description.content | array<object> | Yes | minItems 1; maxItems 32 |
description.content[] | object | Yes | additionalProperties false |
description.content[].type | string | Yes | enum paragraph | heading | bulletList | orderedList |
description.content[].attrs | object | No | additionalProperties false |
description.content[].attrs.level | integer | No | minimum 1; maximum 6 |
description.content[].content | array<object> | No | maxItems 64 |
description.content[].content[] | object | Yes | additionalProperties false |
description.content[].content[].type | string | Yes | enum text | hardBreak | listItem | paragraph | heading |
description.content[].content[].text | string | No | minLength 1; maxLength 2000 |
description.content[].content[].marks | array<object> | No | maxItems 8 |
description.content[].content[].marks[] | object | Yes | additionalProperties false |
description.content[].content[].marks[].type | string | Yes | enum strong | em | code | underline | strike | link |
description.content[].content[].marks[].attrs | object | No | additionalProperties false |
description.content[].content[].marks[].attrs.href | string | No | minLength 8; maxLength 2048; pattern ^https://; format uri |
description.content[].content[].attrs | object | No | additionalProperties false |
description.content[].content[].attrs.level | integer | No | minimum 1; maximum 6 |
description.content[].content[].content | array<object> | No | maxItems 64 |
description.content[].content[].content[] | object | Yes | additionalProperties false |
description.content[].content[].content[].type | string | Yes | enum text | hardBreak | paragraph | heading |
description.content[].content[].content[].text | string | No | minLength 1; maxLength 2000 |
description.content[].content[].content[].marks | array<object> | No | maxItems 8 |
description.content[].content[].content[].marks[] | object | Yes | additionalProperties false |
description.content[].content[].content[].marks[].type | string | Yes | enum strong | em | code | underline | strike | link |
description.content[].content[].content[].marks[].attrs | object | No | additionalProperties false |
description.content[].content[].content[].marks[].attrs.href | string | No | minLength 8; maxLength 2048; pattern ^https://; format uri |
description.content[].content[].content[].attrs | object | No | additionalProperties false |
description.content[].content[].content[].attrs.level | integer | No | minimum 1; maximum 6 |
description.content[].content[].content[].content | array<object> | No | maxItems 64 |
description.content[].content[].content[].content[] | object | Yes | additionalProperties false |
description.content[].content[].content[].content[].type | string | Yes | enum text | hardBreak |
description.content[].content[].content[].content[].text | string | No | minLength 1; maxLength 2000 |
description.content[].content[].content[].content[].marks | array<object> | No | maxItems 8 |
description.content[].content[].content[].content[].marks[] | object | Yes | additionalProperties false |
description.content[].content[].content[].content[].marks[].type | string | Yes | enum strong | em | code | underline | strike | link |
description.content[].content[].content[].content[].marks[].attrs | object | No | additionalProperties false |
description.content[].content[].content[].content[].marks[].attrs.href | string | No | minLength 8; maxLength 2048; pattern ^https://; format uri |
created | string | No | maxLength 64 |
updated | string | No | maxLength 64 |
parent | object | No | additionalProperties false |
parent.id | string | No | minLength 1; maxLength 64 |
parent.key | string | No | minLength 1; maxLength 64 |
parent.name | string | No | maxLength 255 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"issue_id_or_key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"fields": {
"type": "array",
"items": {
"type": "string",
"enum": [
"summary",
"status",
"assignee",
"reporter",
"issuetype",
"project",
"priority",
"description",
"labels",
"created",
"updated",
"parent"
]
},
"minItems": 1,
"maxItems": 12
}
},
"required": [
"issue_id_or_key"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"self": {
"type": "string",
"maxLength": 2048
},
"summary": {
"type": "string",
"maxLength": 255
},
"status": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 128
},
"category_key": {
"type": "string",
"maxLength": 64
}
}
},
"assignee": {
"type": "object",
"additionalProperties": false,
"properties": {
"account_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"display_name": {
"type": "string",
"maxLength": 255
},
"active": {
"type": "boolean"
}
}
},
"reporter": {
"type": "object",
"additionalProperties": false,
"properties": {
"account_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"display_name": {
"type": "string",
"maxLength": 255
},
"active": {
"type": "boolean"
}
}
},
"issuetype": {
"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": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 255
}
}
},
"priority": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 255
}
}
},
"labels": {
"type": "array",
"items": {
"type": "string",
"maxLength": 255
},
"maxItems": 50
},
"description": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"doc"
]
},
"version": {
"type": "integer",
"minimum": 1,
"maximum": 1
},
"content": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"paragraph",
"heading",
"bulletList",
"orderedList"
]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
}
}
},
"content": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"text",
"hardBreak",
"listItem",
"paragraph",
"heading"
]
},
"text": {
"type": "string",
"minLength": 1,
"maxLength": 2000
},
"marks": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"strong",
"em",
"code",
"underline",
"strike",
"link"
]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"href": {
"type": "string",
"minLength": 8,
"maxLength": 2048,
"pattern": "^https://",
"format": "uri"
}
}
}
},
"required": [
"type"
]
},
"maxItems": 8
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
}
}
},
"content": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"text",
"hardBreak",
"paragraph",
"heading"
]
},
"text": {
"type": "string",
"minLength": 1,
"maxLength": 2000
},
"marks": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"strong",
"em",
"code",
"underline",
"strike",
"link"
]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"href": {
"type": "string",
"minLength": 8,
"maxLength": 2048,
"pattern": "^https://",
"format": "uri"
}
}
}
},
"required": [
"type"
]
},
"maxItems": 8
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"level": {
"type": "integer",
"minimum": 1,
"maximum": 6
}
}
},
"content": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"text",
"hardBreak"
]
},
"text": {
"type": "string",
"minLength": 1,
"maxLength": 2000
},
"marks": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"strong",
"em",
"code",
"underline",
"strike",
"link"
]
},
"attrs": {
"type": "object",
"additionalProperties": false,
"properties": {
"href": {
"type": "string",
"minLength": 8,
"maxLength": 2048,
"pattern": "^https://",
"format": "uri"
}
}
}
},
"required": [
"type"
]
},
"maxItems": 8
}
},
"required": [
"type"
]
},
"maxItems": 64
}
},
"required": [
"type"
]
},
"maxItems": 64
}
},
"required": [
"type"
]
},
"maxItems": 64
}
},
"required": [
"type"
]
},
"minItems": 1,
"maxItems": 32
}
},
"required": [
"type",
"version",
"content"
]
},
"created": {
"type": "string",
"maxLength": 64
},
"updated": {
"type": "string",
"maxLength": 64
},
"parent": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"key": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 255
}
}
}
},
"required": [
"id",
"key"
]
}