Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Exporting reporter and assignee emails in CSV reports from JSD

Benjamin Heavens
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 15, 2020

I'm trying to export ticket data from JSD and I need Reporter and Assignee emails to be exported, but at the moment it's just exporting the weird IDs that JSD creates for the user. How do I do this?

1 answer

0 votes
Alex Gallien
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 21, 2023

This is an old thread but found it while trying to solve the same problem and thought I'd reply. I couldn't find anyone who had solved it yet so I ended up creating a scripted field with Scriptrunner, added that as a column, and exported that:

import com.atlassian.jira.user.ApplicationUser

ApplicationUser issueAssignee = issue.getAssignee()

if(issueAssignee) {
return issueAssignee.getEmailAddress()
}
else {
return null
}
You could easily update that to work for reporter too. Hope it helps!

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events