I have a custom field ,which would take in multiple users as assignees . I am preparing an automation tool which will send a message to slack channel , stating the users assigned to task .However I have no idea how to get its smart value . I tried using
{{issue.Assign Multiple Users.value.get(n)}}
and even
{{issue.customfield_10061.value.get(n)}}
The name of my custom field is "Assign Multiple Resources" and the type is " User Picker (multiple users)"
Try this
To Show only their names
{{issue.Assign Multiple Resources.displayName}}
To Show names with emails
{{#issue.Assign Multiple Resources}}{{displayName}} ({{emailAddress}}) {{/}}
More dteails in https://support.atlassian.com/cloud-automation/docs/examples-of-using-smart-values-with-lists/
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.