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.
I am trying to use {{issue.affectedServices.name}} in automation that sends an email but it shows up blank in email.
Automation email:
"
<strong>New Incident: {{issue.summary}} reported by {{issue.reporter.displayName}}</strong>
Date and Time: {{issue.Time of Occurrence}}
Duration: {{issue.Duration}} minutes
Services Impacted: {{issue.affectedServices.name}}
Impact: {{issue.Impact}} - {{issue.Impact Description}}
Summary: {{issue.description}}
Resolution Details: {{issue.Resolution Details}}
Timeline: {{issue.Timeline}}
Investigation: {{issue.Investigation}}
Next Steps: {{issue.Next Steps}}
"
Email recieved:
"
Duration: 119.0 minutes
Services Impacted:
Impact:
"
Because services are now stored in Insight you have to use the lookup object in order to get the name, something like this:
.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is only available if you are on the Premium plan, that will enable Insight. But you should still be able to get the service on the standard plan according to the documentation, maybe try and see if this works:
{{#issue.affectedServices}}
* Service: {{name}}
{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Mikael Sandberg that still shows up blank in the email.
I even inspected the json for the issue there is only service id option there.
not sure what to try with this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.