I need to find out who is the first user which moved the issue from status "to do" to status "In progress". The story can be moved in multiple statuses, it can be moved even back to "to do", but I need to find the initial person who moved it.
I tried to get this information from changelog, but is not really helpful. Is there any API that can provide that data?
The transition field is visible in the app. Screenshot attached.
This tab come from an app JSU.
You can get the full issue history using the REST API like you seems to have already try. What is the issue with the rest api ? You can get the json response then parse it to get the information you arel ooking for.
Regards
Hi @Vasilescu Ovidiu ,
welcome to Atlassian community!
You can use the following api https://docs.atlassian.com/software/jira/docs/api/REST/8.9.1/#api/2/issue-getIssue with the parameter expand=changelog
Example: https://YOUR_JIRA_BASE_URL/rest/api/2/issue/YOURISSUEKEY?expand=changelog
After doing that you will have the full history for the ticket including who performed the transition.
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm not sure what version you're on but the History tab tracks all transitions and edits to the ticket. Are you not able to find it there?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello guys,
Thank you for the answers. I did not used the API directly, I used Workato to get the data about an issue. On a first sight, I have missed some fields, but I had another look and now it's fine, I can identify who changed the status.
I will close this topic.
Have a great day!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.