updateSprint
Description
Used to modify the details and properties of an existing sprint. It allows for adjustments in sprint duration, goals, or other attributes.
Parameters
Return Type
Boolean
Returns true if the sprint is updated.
Examples
Example 1
Simple name update.
return updateSprint(12345, "New name for sprint");
Returns true if successful, false if otherwise.
Example 2
Updates name and dates.
return updateSprint(12345, "New name for sprint", "2025-01-01", "2025-01-14");
Returns true if successful, false if otherwise.
See also
Peacock