You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Experts
I need to turn off JIRA notification scheme and use my own Custom Email for sending updates on Issues - I am sending an email to Reporter when Issue is resolved and need to include Survey link in the Resolution email - I was trying to use below:
https://serverurl/servicedesk/customer/portal/3/IT-XXX/feedback?
But this doesn't seem to work - do we need token that is sent in JIRA resolution email.
https://serverurl/servicedesk/customer/portal/3/IT-XXX/feedback?token=f5b6c9ab3f136ed4b3653ee2a4f476320a5af9bf&rating=3
Please suggest if I can get a Survey link in my Custom Email.
Hi!
I found a way to generate this link on my own. I do not think that it is the best way to do this, but it solves the problem.
String jsonToken = "{\"token\":\"%s\",\"issueID\":%s,\"userKey\":\"%s\"}"; String token = DefaultSecureTokenGenerator.getInstance().generateToken(); EntityPropertyService.PropertyInput propertyInput = new EntityPropertyService.PropertyInput(String.format(jsonToken, token, issue.getId().toString(), issue.getReporter().getKey()), "feedback.token.key"); EntityPropertyService.SetPropertyValidationResult validationResult = issuePropertyService.validateSetProperty(issue.getReporter(), issue.getId(), propertyInput); this.issuePropertyService.setProperty(issue.getReporter(), validationResult);
issuePropertyService you can get in constructor or by ComponentAccessor
After this you can use this token in link
Best regards,
Yury