Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Can you route tickets via the summary?

Bobby Hutsler June 10, 2021

Hi all - New here.

For tickets that are submitted by our users via email, the subject of the email is the summary.  We would like the ticket submitted by email with a particular subject to auto route to a particular team.  For example, if a ticket is submitted with the subject of "Password Reset", that ticket would go to our IAM team.

Is this possible?  This has been possible for all other previous ticket systems I have used but do not see it in JIRA Service Desk.

Thanks!

2 answers

2 accepted

1 vote
Answer accepted
Jack Brickey
Community Champion
June 10, 2021

You can use built in automation to parse the summary and take desired action. 

Bobby Hutsler June 18, 2021

Thank you!

Bobby Hutsler June 24, 2021

Hi Jack.   I am being told from support that the summary word is case sensitive, is that true?  So if I set it up for Password Reset, password reset wouldn't work? 

Jack Brickey
Community Champion
June 24, 2021
  • To be honest I am unsure. Should be a simple matter of testing both methods and seeing if you trigger on it
0 votes
Answer accepted
Hyrum Steffensen _Appfire_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 10, 2021

Hello Bobby! Welcome!

You can totally redirect tickets based on content in the summary if you use a scripting solution from the Atlassian Marketplace to create a custom Post Function. Here is an example from Power Scripts, but there are other solutions which could do the same thing. Let's say you have a transition, "password team":

if (contains(summary, "Password Reset")) {
    autotransition("password team", key);
}

Here is the documentation for autotransition() and for contains(). Here is how to create a custom Post Function.

Due to Confluence Cloud security features, you may need to open the documentation in incognito mode or by logging out of Confluence.

Regards,

Hyrum

Please note that I am a Product Engineer for Power Scripts and I work for Anova Apps, an Appfire company.

Bobby Hutsler June 18, 2021

Thanks!

Hyrum Steffensen _Appfire_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 21, 2021

Absolutely! 

Suggest an answer

Log in or Sign up to answer