We have multiple customer fields in our automation email that we use to pull information to make sure end user can view in the email and also add the url to the ticket.
Example of our email body query:
{{issue.summary}}
Employee Name: {{displayName.customfield_10113}} >>>> This does not work!
Description: {{issue.description}}
Reporter: {{reporter.displayName}}
Last Working Date: {{fields.customfield_10140}}
{{issue.url.customer}}
We have use the json file to help pull what it should read to which was originally:
{{name.customfield_10113}} but it never pulls the information.
Can anyone help point out what we are missing we have tried multiple different ways to point to that specific customfield but it will not query the person name on the ticket.
Hello @Aaron Geister
Have you tried this way {{issue."Your custom filed name"}}
Example {{issue."Customer name"}}
You can literally write your custom filed name, no filed ID needed, It's case sensitive so keep that in mind.
BR, Olga
Thank you I will try this next. Appreciate the reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is the output for the changes I made so now I am using:
{{issue.Employee Name}}
TEST TEnRM for automatio
Employee Name: 5bd75ada1582cc3b70157007<<<< again we get the code not the Name
Description: This is a test please do not term.
Reporter: Aaron Geister
Last Working Date: 2020-06-04
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This field is a user picker field do I have to state that in the smart value?
{{issue.Employee Name.displayName}} ????
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is the answer to the question so all that have this issue know.
{{issue.Employee Name.displayName}}
multiple user field :"case sensitive" this = {{issue.custom field name.displayName}}
This will query the name of the multiple picker field.
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.