Hello,
i try to manage jira tickets through the python api.
all is ok except the updating of the "timespent".
it ok to update the remaining time or the original estimate through this callings (for example):
jira.update_issue_field("UPIFEE-1157", fields={"timetracking":{'originalEstimate': str("3")+"h"}})
but the timespent don't work.
example of methods (don't work):
jira.issue_update("UPIFEE-1157", fields={"timetracking":{'timeSpent': str("3")+"h"}})
jira.update_issue_field("UPIFEE-1157", fields={"timetracking":{'timeSpent': str("3")+"h"}})
Someone know a solution?
thanks :-)