Could you please tell me which API call we should use to retrieve the the time a transition occurred on a specific issue or issue type?
Ideally, we'd like to see the time a ticket was in each status.
https://docs.atlassian.com/jira/REST/server/
JIRA: 7.3.1
You cannot get it directly thru REST. So only one way to get it thru REST, as advised by Alexey:
And then iterate over changelog of each issue and calculate time in each transition.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
If you use Jira Java API then you have to use ChangeHistoryManager.
If you use Jira REST API then you can use GET /rest/api/2/issue/{issueIdOrKey} with expand=changelog
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you!! Used - /rest/api/2/issue/{issueIdOrKey}?expand=changelog
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.