Hi everyone,
I’m trying to build a small automation workflow that checks Jira issue estimates against planned timelines. I want to programmatically validate whether tasks are likely to finish on time based on story points and time logged.
I came across a simple online calculator that helps me quickly test and visualize estimates before fully integrating them: Estimation Calc Tool . It’s not part of Jira, just a handy way to experiment with calculations w hile building my scripts.
Has anyone else tried doing this programmatically? Any tips for fetching estimate data via the API or handling edge cases would be really helpful!
Nice approach. You can use the Jira REST API to pull story points and worklogs. Just make sure to handle missing estimates and inconsistent data those edge cases come up a lot
Exactly! Handling missing or inconsistent data is key when working with Jira APIs. Pulling story points and worklogs systematically makes your workflow much more reliable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great idea! I’ve been exploring something similar; validating Jira estimates programmatically can really improve planning accuracy. For data, you can use the Jira REST API to fetch story points, time estimates, and worklogs. Also, make sure to handle edge cases like missing estimates or inconsistent logging. Using a simple calculator tool for testing logic sounds like a smart approach while building your workflow
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.