Skip to content

POST adjusted‐story‐points

Justin Meyer edited this page Aug 1, 2024 · 4 revisions

The https://auto-scheduler.bitovi-jira.com/adjusted‐story‐points endpoint takes a "median estimate" and "confidence" and returns how much the estimate should be adjusted to account for risk.

Example POST body:

{
  "storyPointsMedian": 10,
  "storyPointsConfidence": 20
}

Example response:

{
  "adjustedStoryPoints": 26.44653598619911,
  "extraStoryPoints": 16.44653598619911,
  "roundedExtraStoryPoints": 16,
  "roundedAdjustedStoryPoints": 26
}

Required Params

  • storyPointsMedian Number - The median number of story points. Needs to be 0 or higher.
  • storyPointsConfidence Number - The confidence on the median estimate. Needs to be between 0 and 100 inclusive.

Optional Parameters

  • riskThreshold Number - The percentage of outcomes you want the adjustedStoryPoints to account for. Defaults to 80%.

Return values

  • adjustedStoryPoints Number - A floating point number of adjusted story points.
  • extraStoryPoints Number - A floating point number of the extra points added.
  • roundedExtraStoryPoints Number - The rounded number of points added.
  • roundedAdjustedStoryPoints Number - The rounded adjusted story points.