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 have a couple of services (linked from service registry) assigned to a ticket on a Jira SM board, that I want to send in an email with a jira automation.
However, looking up the custom field and values of the ticket with the Api, it just returns a list of ids, but no service names:
How can I get and use the name of these services in a jira automation?
I found it out.
If you just use the normal smart value with name, you get the names as a list:
{{issue.customfield_10058.name}}
So you can just iterate over them like so to print them as a list:
<ul>
{{#issue.customfield_10058}}
{{#name}}
<li>{{name}}</li>
{{/}}
{{/}}
</ul>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.