Sprint
Represents a sprint that is associated with an agile board. Each sprint can include issues from one or more projects.
This table describes attributes of the Sprint
entity.
To receive an attribute in the response from the server, specify it explicitly in the
fields
request parameter.To update an attribute, provide it in the body of a POST request.
Field | Type | Description |
---|---|---|
id | String | The ID of the sprint. |
agile | Agile | The agile board that the sprint belongs to. |
name | String | Name of the sprint. |
goal | String | Goal of the sprint. |
start | Long | The start date of the sprint as a timestamp. |
finish | Long | The end date of the sprint as a timestamp. |
archived | Boolean | Indicates whether the sprint is archived. |
isDefault | Boolean | If |
issues | Array of Issues | Issues that are present on this sprint. |
unresolvedIssuesCount | Int | Number of unresolved issues on this sprint. |
previousSprint | Sprint | If you provide this attribute when you create a new sprint, then all unresolved issues from this sprint will be moved to the newly created sprint. |