Hi there,
I'd like to report on how tickets are reported into Jira Service Management.
It clearly knows that tickets are raised via e-mail / portal / agent as it shows this in the ticket:
What field is storing this information? Also, can I add to the entries in this field? We're going to get phone calls and it'd be good to have this as an option.
I hope you can help.
Dave
You can use request-channel-type on JQL for this. You cannot add values to this field.
Thanks @Jack Brickey
I can use request-channel-type in a JQL filter to get specific search results and use it to create custom series in dashboards so that's perfect.
It's annoying that you can't add channels like 'phone' and 'walk-in' but I've found an Atlassian knowledge article that pretty much says they're not going to add them or make them editable...
Adding or removing custom request channels in Jira Service Management
Thanks again!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks! Gotta love this community!
We have a Source field which will now map to these Channel Type through an automation. Can see if we're finally getting more Portal requests vs Email requests.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @David Meredith , I would argue that this can be derived from 'issuetype'.
Would love to hear if anyone else knows a better field.
Cheers, Markus
Founder of Duplicate AI, Find & Merge Similar Issues
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @mararn1618 _secretbakery_io_ !
How did you extract that data? It looks handy...
I think 'Email request' is just the issue type that's assigned by default when it comes in via e-mail. It could be changed to a more appropriate one down the line by one of our agents. Change it to an issue type of 'Application Fault' or whatever.
Jira would still retain that it received it via e-mail but I don't really know what field it stores it in.
What are the values for something that's raised by Portal?
Thanks for helping!
Dave
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's just the REST API Endpoint (see docs), e.g.
You can just use your browser. In addition to that I use a chrome plugin to make it look pretty. Cheers, Markus
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That looks really handy! Thank you :) I'll give it a test.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Expanding on @Jack Brickey's answer you can:
Via JQL: "project = YOUR_PROJECT and request-channel-type = email"
Via REST:
You can replace email with:
Cheers, Markus
Founder of Duplicate AI, Find & Merge Similar Issues
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.