Getting Worklog of Issues from Filter using JIRA APi?

Joshua Melanson November 15, 2017

I'm wanting to retrieve the time estimates and time spent from issues from within a filter using JIRA APi's.  I'm super new to all of this and I'm super confused about how to execute this.  I have a path for retrieving worklogs from issues but not from within a filter and I can retrieve the specific filter I want but not the issues.  If anyone can help that would be greatly appreciated.

 

Here's the two functioning paths I have as mentioned above:

rest/api/2/issue/{issueid}/worklog?expand/properties

 

rest/api/2/filter/{filterid}

1 answer

0 votes
Warren
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 Leaders.
November 16, 2017

Hi Joshua

You can apply a JQL filter to any of the API calls, so using your first call above

rest/api/2/issue/{issueid}/worklog?expand/properties&jql=project=XXX and sprint=yyy and status!=Closed

By adding & you can then add your filter as well.

If you look at the documentation there are a number of parameters that can be passed in, each pre-pended with &

Suggest an answer

Log in or Sign up to answer