Zendesk: auto-fill a widget with data from ticket view

Zendesk: auto-fill a widget with data from ticket view

⚠️ You are reading a post that has been archived. This means the content:
  • could be very old (up to 15 years!)
  • could not be accurate anymore
  • could not represent the views of the author anymore
  • could be in le French

As we deliver our own VoIP service, we also have our own Support Tool internally. This is great in terms of responsiveness or for the data our Support Teams need to have since they can simply ask our developers to add that.

However, it means logging into a different tool than Zendesk to resolve a ticket which is time consuming. I therefore created a simple widget which allows a Support Agent to check a customer’s profile in only one click from Zendesk’s ticket view:

The widget simply fetches the phone number of the customer from the custom ticket field (you just need to know its ID via Manage> Ticket Fields) and replicates on page load to the widget’s search box. It’s all done with 3 lines of code, jQuery and using the .val() function 🙂
Code

$j('#ID_OF_YOUR_WIDGET_INPUT_BOX').val($j('#ticket_fields_NUMBER').val());

The source is on GitHub.

Leave a Reply