How to update issue reporter from Python

Erik Johnson February 16, 2016

Hi all, I'm trying to update the reporter of an issue using the JIRA Python API (version 1.0.3). 

I am signed in (using basic auth) as a user who has permissions to edit reporters, and I am trying to do it for an issue which I myself have created. Curiously, instead of changing the reporter, it changes the assignee. 

issue.update(reporter='newuser')

Any ideas? I have tried searching, but to no avail.

Thanks! 

4 answers

1 vote
Erik Johnson June 23, 2016

Charlie, try this:

issue.update(reporter={'name': 'username'})

Where 'username' is of course the username of the user you want to be the reporter.

0 votes
Erik Johnson June 23, 2016

I converted my comment to the answer, since it's what is working for me.

0 votes
tjarles June 22, 2016

I have the same problem!

0 votes
Erik Johnson February 17, 2016

Bump?

Suggest an answer

Log in or Sign up to answer