How do I get tickets that are sent in via email or the portal to route to specific groups? I have three groups, all doing different specific jobs.
I would like to have the user fill out a ticket, put a key word in and have it automatically route to the group it should go to.
Once the ticket is routed to that group, the tech's in that group can grab any open ticket and work on it.
It looks like email sent tickets just create an open incident that then gets manually routed based on the issue.
Hi @Paul Hugg
This is certainly possible using Automation - but I would be wary about using key word association. I'd consider using something more substantive - such as...
The rule does depend on a couple of other parameters:
But, the rule might look like this...
If you can give us more specifics around how the routing should work - we'd be happy to try and provide a more specific set of instructions for how to create this rule :)
Ste
@Ste Wright How are the groups defined or set of parameters? I'm not sure what you mean by, sorry.
I can see the groups I created by going to admin/my site/groups. How can I tell if they're linked to JSM first?
I'd like it to run like this:
User goes to portal, enters keywords based on the issue they're having, that gets routed to one of the three groups. AppDev, Infrastructure, Helpdesk. Then the people in those groups would be able to view the queue and grab the next ticket. Not looking for round robin or load balanced, my team is very small., this is the end game. Just need to make sure my bases are set first.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Paul Hugg
For this scenario...
...it should be possible to just have Queues for this.
To set one up:
The issues would then route depending on the JQL. Remember though if a user mentions "AppDev" and "Helpdesk" - both teams would see the ticket in their respective queues.
It also relies on users not stating "App Dev" or "Help Desk" - or misspelling them, etc.
If you want it to be more static - i.e it's either AppDev OR Infrastructure, not both - then I wouldn't use keywords.
I'd look to use...
These could then be used in the Queue JQL instead!
Thus Automation isn't necessarily needed here, unless you wanted to send an email or comment alerting a team of a new ticket - for example...
In the action's text body, you could then confirm there is a new ticket in their queue - and use smart values to name/alert the Group, link to the ticket if it's an email, etc.
Let us know if this helps, or if you need any more specific help with any steps!
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ste Wright Awesome! Thank you for this amount of information!. I'll give this a shot. I appreciate the help!
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.
Hi @Paul Hugg , welcome to the community.
You could certainly consider this using automation. Unfortunately this will always be reliable since he will be relying on humans consistently entering the right keyword. So basically I'm guessing your automation would look something like this...
trigger - issue created
If/else condition - description contains abc
action - edit issue group = 123
else if description contains xyz
action - edit issue group = 456
else....
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.