Is it possible to open the concrete article using Help Center API in Zendesk Widget? When user clicks on some label, I would like:
- Open Zendesk widget.
- Fill the placeholder with the clicked label text.
- Load and show the article that contains descriptions for all labels.
I've tried to do that:
window.zE('webWidget', 'open');
window.zE('webWidget', 'helpCenter:setSuggestions', {
search: `Glossary ${search}`
});
but it just opens a widget and shows the first three articles (the first article is that I want to show).
I will appreciate any help or advice how to do that.