Hey everyone,
I am trying to put auto responses based on the request type in Jira service desk Cloud.
Here is my automation below;
{{ #if{{equals(issue.Request Type.requestType.name, "IT help")}}
Tech will take care of it.
{{ /}}
{{ #if{{equals(issue.Request Type.requestType.name, "Change/Feature Request")}}
Sorry, can't give any estimated completion date yet.
{{ /}}
However, regardless of the request type, both texts are being displayed.
How can I fix that?
thanks
Hi @Evrim Demir,
The correct syntax is
{{#if(equals(issue.Request Type.requestType.name, "IT help"))}}
Tech will take care of it.
{{/}}
and
{{#if(equals(issue.Request Type.requestType.name, "Change/Feature Request"))}}
Sorry, can't give any estimated completion date yet.
{{/}}
Our documentation did list the syntax as you described it in your post, but this was an error - sorry about that! I've since corrected the docs.
Please let me know if this still doesn't work.
Cheers,
Kevin
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.