I am trying to create an automation that assigns a ticket to an Agent depending on the Request type the customer uses at the Portal. All of the request types on this portal go to the same Issue Type, so I can't use that as a condition. Is there a way to use the Request type names in the Portal to trigger an assignment?
Hi @Ben Radlinski and welcome to the community!
Yes you can. I see you're on Jira Server so this assumes you have the Jira Automation app installed. It would look something like this:
Customer Request Type was the key! Thank you so much. I'm new-ish to Service Desk, so I feel lost sometimes. Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
While I have you, can this be done with Request Type Groups? I can't seem to find a field with that information.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's a great question. If it is possible, you'd need to use an advanced compare condition. I know it's possible to extract the group IDs, but not the actual names. Here's how that would work:
{{issue.customer request type.requestType.groupIds}}
I can see value in something like this if the request type is only associated with one group. However, multiple groups would make things complex. So, assuming your request type is part of portal group "General" and that group has an ID of 10. You would change your rule to something like this:
I would be curious if smart values can actually pull the name of the group, but ID can work too. You just need to do a little more digging.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Using the individual Request types ended up being the better long term option, so I'm sticking with that. Thanks again for your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Related question:
Would it be possible to create a rule that triggers when the Request Type is changed to a specific Request Type?
Scenario: a ticket is created via email. The request type is then Emailed Request.
When starting to work on the ticket I edit the Request Type to the correct Request Type but this does not trigger my automations - because my automations that create sub-tasks etc. are triggered only when issue is created. Not if I change the Request Type afterwards manually.
Any way to make this work?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Theis Kvisgaard - definitely possible!
For this, you would want your trigger to be "Field value changed." The field to monitor, of course, being "Request Type."
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.