Forums

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

Jira REST API - transition

NJ
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
August 12, 2016

Hi

I would like to know how to write REST API to get all issues for defined "fix version" and to see transitions for those issues. I need to know for example who made certain transition to certain status (for example from status "in development" to "Code Review", and then moved from "Code Review")  http://screencast.com/t/dShNgxpbcJO.

Or maybe easier way, to just get the issues back, where the same "user" moved true those statues?

 

Thanks

1 answer

0 votes
Matthias Gaiser _K15t_
Community Champion
August 12, 2016
You can do a two step solution:
  1. Get All issues for defined version
    Use the JQL search REST API with a JQL like "fixVersion = 1.0"
  2. Transition history for these issues
    Use the get Issue REST API with expand=changelog
    e.g. http://{{serverUrl}}/rest/api/2/issue/PA-18?expand=changelog 

Or all in one call:

  • Use the JQL search REST API and expand the changelog
    e.g. http://{{serverUrl}}/rest/api/2/search?expand=changelog&jql=fixVersion%20%3D%201.0

Suggest an answer

Log in or Sign up to answer