Issue reporter doesn't sync and always = 'Exalate' in Jira Cloud

Originally asked by Viacheslav on 19 September 2019 (original question)


I want to see something more informative than just ‘Exalate’ as the Issue Reporter.
I added an incoming rule
issue.reporter = nodeHelper.getUser(replica.reporter?.key)

The person who reports an issue is present in our Jira Cloud as a customer.
However, the Issue Reporter field value always remains the same ‘Exalate’. No errors during the sync process.

Is there any way to put at least the email of the issue reporter person instead of ‘Exalate’?Source: Jira Cloud (old community)


Answer by André Leroy-Beaulieu Castro on 19 September 2019

Hi Viacheslav,

You can find the user by his email with the following line:

issue.reporter = nodeHelper.getUserByEmail(replica.reporter?.email)

Let me know if this solution is sufficient for you.

Thanks,

André