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?
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.