Fetches the sprint details.
GET /rest/agile/latest/sprint/{sprintId}
The sprint object
Fetches issues in this sprint.
GET /rest/agile/latest/sprint/{sprintId}/issue
Optionalparams: BoardIssuesParamsOptional: startAt, maxResults, jql, fields, expand
A search response containing the sprint's issues
Allows the resource to be awaited directly, resolving with the sprint. Delegates to SprintResource.get.
Optionalonfulfilled: null | (value: JiraSprint) => TResult1 | PromiseLike<TResult1>Optionalonrejected: null | (reason: unknown) => TResult2 | PromiseLike<TResult2>
Represents a Jira Software sprint resource.
Implements
PromiseLike<JiraSprint>so it can be awaited directly to fetch the sprint, while also exposing sub-resource methods.Example