Fetches the changelog for this issue.
Jira Data Center exposes changelog through
GET /rest/api/latest/issue/{issueIdOrKey}?expand=changelog.
Optional_params: ChangelogParamsA paged response of changelog entries
Fetches a single comment by ID.
GET /rest/api/latest/issue/{issueIdOrKey}/comment/{id}
The numeric comment ID
The comment object
Fetches comments for this issue.
GET /rest/api/latest/issue/{issueIdOrKey}/comment
Optionalparams: CommentsParamsOptional: startAt, maxResults, orderBy, expand
A paged response of comments
Fetches the issue.
GET /rest/api/latest/issue/{issueIdOrKey}
Optionalparams: IssueParamsOptional: fields, expand, properties, updateHistory
The issue object
Fetches the remote links (external URLs) for this issue.
GET /rest/api/latest/issue/{issueIdOrKey}/remotelink
OptionalglobalId: stringOptional global ID to filter by a specific remote link
An array of remote links
Allows the resource to be awaited directly, resolving with the issue. Delegates to IssueResource.get.
Fetches the available workflow transitions for this issue.
GET /rest/api/latest/issue/{issueIdOrKey}/transitions
Optionalparams: TransitionsParamsOptional: transitionId, expand, skipRemoteOnlyCondition
An object containing the list of transitions
Fetches the vote information for this issue.
GET /rest/api/latest/issue/{issueIdOrKey}/votes
The votes object
Fetches the watcher information for this issue.
GET /rest/api/latest/issue/{issueIdOrKey}/watchers
The watchers object
Fetches a single worklog by ID.
GET /rest/api/latest/issue/{issueIdOrKey}/worklog/{id}
The numeric worklog ID
The worklog object
Fetches worklogs for this issue.
GET /rest/api/latest/issue/{issueIdOrKey}/worklog
Optionalparams: WorklogsParamsOptional: startAt, maxResults, expand
A paged response of worklogs
Represents a Jira issue resource with chainable async methods.
Implements
PromiseLike<JiraIssue>so it can be awaited directly to fetch the issue, while also exposing sub-resource methods.Example