Hi,
I have JMWE workflow post function to sent email notification upon issue created. In that post function HTML body I want to display all attendees to meeting through single and multi user piker with there full names. I'm using following code for single user picker and I'm wondering for multi user picker. Could you please help me with the expression to get the result.
Single user picker: <p> MH Lead( Multi user picker field name): ${issue.get("Custom field Name").displayName}
Multi User picker: ?
Regards,
Kiran
On Jira Cloud, for a single-user picker field, the correct expression is:
{{issue.fields.customfield_12345.displayName}}
And for a multi-user picker field:
{{issue.fields.customfield_12345 | join(", ", "displayName")}}
Hi David,
Thank you for quick response. Unfortunately this code is not working for me. I'm getting the following error.
There was an error during the execution of your script against issue RRA-19
Regards,
Kumar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you post a screenshot of your attempt with both the code and the full response (error)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @kk4065896 ,
are you sure you're on Jira Cloud? The code you shared only works for Jira Server/DC...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.