Hey,
I'm using python API, I'm trying to get the full history of ticket status transitions.
How can I achieve that? Can it possible for more than one ticket?
Thanks
Hey there,
When requesting the issue from Jira's API using the get issue method (/issue), you can request changelog as an expand field.
To see what's there, you can take a peek at this on any issue in your site (sub in your own site URL and issue key):
https://example.atlassian.net/rest/api/3/issue/TEST-21?expand=changelog
Then you can filter the results by the field - below you can see an example of a portion of a changelog item showing field: "status" modified when an issue transitioned from To Do to In Progress.
Cheers,
Daniel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.