The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Tracking "Remaining Estimate" changes via Rest

Mads B
October 7, 2013

In the Jira Rest Api, it is easy to keep track of logged work with the worklog (rest/api/2/issue/{issueIdOrKey}/worklog.

However, this just gives the time spent. Sometimes, the Remaining Estimate is changed independently from the time spent. Is there any way to get Remaining Estimate changes via Rest? (or via anything else, where I can get collect data automatically)

2 answers

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Answer accepted
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
October 8, 2013

You will have to get it from changelog. Try the following and extract it from the output.

/rest/api/2/issue/issue_key?expand=changelog

Mads B
October 9, 2013

That will work. Thank you!

0 votes
Adam Conway
October 8, 2016

/rest/api/2/issue/issue_key?fields=timetracking returns the info directly (both in seconds and readable)