Syntax
sprintInfo(sprint id)
Description
Gets some details about the sprint.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
sprint id | number | Yes | The sprint id |
Return type
string[]
Returns name, startDate, endDate and completeDate of the sprint.
Example
string [] info = sprintInfo(5); string name = info["name"]; // the name of the sprint with id 5
Notes
- If there is no sprint with that id, an empty string array will be returned.
See also
-
sprintName (Power Scripts™ for Jira 4.0)
-
startedSprints (Power Scripts™ for Jira 4.0)
-
notStartedSprints (Power Scripts™ for Jira 4.0)
-
sprintInfo (Power Scripts™ for Jira 4.0)
-
sprintStartDate (Power Scripts™ for Jira 4.0)
-
issueInSprint (Power Scripts™ for Jira 4.0)
-
sprintEndDate (Power Scripts™ for Jira 4.0)
-
sprintCompleteDate (Power Scripts™ for Jira 4.0)
-
closedSprints (Power Scripts™ for Jira 4.0)
-
removeIssueFromSprint (Power Scripts™ for Jira 4.0)
-
issueInStartedSprint (Power Scripts™ for Jira 4.0)
-
addIssueToSprint (Power Scripts™ for Jira 4.0)