Linkets - A Zendesk App

2 minute read

It’s official! Linkets has been formally published on the Zendesk App marketplace - go check it out!

One of the coolest things about Zendesk (both the company and the software itself) is how developer-friendly it is. The API is well documented and powerful, and they even provide an App Framework that allows you to develop “widgets” that are displayed in the standard Zendesk UIs. Full disclosure, I currently work at Zendesk.

Zendesk Support has a ton of features, but doesn’t have the ability to link related tickets. There is a Linked Ticket app you can install for free, but this only allows you to create new tickets, and only as a child ticket. Want to link to an existing ticket? Too bad. Need to support relationships other than parent/child? Too bad. I want people to use and love Zendesk, so I decided to take a crack at my own version of the linked ticket app. I titled my app “Linkets.”

The concept for the app is simple. Linked tickets are simply tickets with extra metadata about one another. The Zendesk API supports reading and writing tags on tickets, and tags are an excellent way to store metadata. When you open a ticket, the widget reads the tags, parses any tags that are specific to links, looks up those related tickets and displays them in the widget.

Linkets displaying linked ticket

Users obviously need to be able to create new links. To do so, users can simply search for tickets (using Zendesk’s search API, which is a speedy, badass, full-text search platform), click on the button to create the link, and then choose how the two tickets are related. Behind the scenes, this is another API call that updates the current ticket and the linked ticket.

Linking a new ticket

That’s it. Linkets is very lightweight, won’t eat through your API limits, and is easily modifiable/extensible. Don’t like the built-in relationship types? Just modify the JavaScript for handling ‘relationship codes’ and the relationship codes set in the UI.

The app isn’t published on the Zendesk App Marketplace yet, but in the meantime you can download the ZIP file from the GitHub repo and install it as a “Private App”.

Linkets on GitHub

The Zendesk developer docs are so good, I won’t bother walking through how to write your own app. If you’re interested in writing your own app, check out the Build Your First Support App Walkthrough.

Let me know if you end up using Linkets, or if you’ve written your own custom app!

As always, I hope you found this useful.

Leave a Comment