Hi,
I am able to get the history log but only partially. I can get the status updates but none of the comments attached to the history. I need the comments.
Similarly, how do we get the Worklogs.
I need to do all this using Python.
For histories, I have the following basic loop:
from jira import JIRA
subissue = jira.issue('DEV-XYZ',expand='changelog')
for history in subissue.changelog.histories:
print(vars(history))
For WorkLog, I have no idea how to access it.
Many thanks
Chahé
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.