Jira REST API - transition

NJ 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 Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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