Recent searches
No recent searches
Ticket Description Field
Posted Dec 10, 2018
Currently one of the biggest limitations we have in insights is being unable to report on the ticket description field. Are there plans on being able to report on the ticket description field as well as other multi-line fields in explore?
3
5
5 comments
Vincent Dollet
Hi Reshma,
Thank you for your feedback.
We currently do not have any short-term plans to extract / expose ticket description & comments. With that said, we are looking at making easier for you to open tickets / users / organizations from within Explore.
Kind regards
Vincent
-1
Customer Service
Hello!
Just wondering if there have been any developments on this?
Best,
0
Eugene Orman
@..., we are still not planning to expose ticket comments in Explore. However, we are working on introducing the default clickable links functionality to the table reports that will quickly direct you to the corresponding ticket in Support.
-2
Jennifer Morris
This is also a problem for us. We are trying to nail down an issue and the ability to pull multiple ticket fields along with the comments or at the minimum the last comment in a ticket would be extremely useful.
0
Phil Stewart
Having run into the same problem, I developed a solution that is currently working for us. The solution involves the use of a webhook and trigger.
When a ticket is created, the first public comment will be taken and put in a custom ticket field. You can then add the custom ticket field to your reports in Explore.
{
"tickets": [
{"id": {{ticket.id}}, "custom_fields": [
{"id": custom_field_id_goes_here, "value": "{{ticket.description}}"}
]
}
]
}
When a ticket is created, the trigger calls the webhook, and the API populates your custom field with the ticket description. You may also want to add a tag in your trigger actions.
-1