Hi all,
I'm looking to tag users in my automation rule that comments on issues that have not had a response for X days.
I need to tag both the reporter and the requested participants.
I am using [~accountid:{{reporter.accountId}}] to tag reporter which is working fine.
For participants I am using [~accountid:{{issue.Request Participants.accountId}}] which is just returning @User
What should the correct smart value be to tag all participants / watchers in on the ticket or is that not possible?
Thanks
Please try use:
{{#issue.customfield_10003}}[~accountid:{{accountId}}]{{/}}
You need to change Participants field id.
Thanks @Sebastian Krzewiński
I have made the amendment and will let you know if successful on next run.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Sebastian Krzewiński . This worked as intended.
One super minor thing, when there are multiple participants there is no space between the tags. It has zero impact other than visually, is there any way to get the tags to space out if there are multiple? No worries if not.
Thanks again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just add a space inside loop.
Bold parts of below smart value are responsible for loop. You can add inside everything what you want (spaces, commas, etc).
{{#issue.customfield_10003}}[~accountid:{{accountId}}]{{/}}
Regards,
Seba
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.