Skip to main content
NICE CXone Expert
Expert Success Center

Search Touchpoint Events

Applies to:
MindTouch (current)
Role required:
Admin

Events

mindtouch-web-widget:search-redirect:ready

Fired when the search redirect widget is created. The event data contains the following properties:

Name Type
embedId string
 document.addEventListener('mindtouch-web-widget:search-redirect:ready', ({ data }) => {
    const embedId = data.embedId;
});

mindtouch-web-widget:search-redirect:loaded

Fired when the search redirect widget is loaded. The event data contains the following properties:

Name Type
embedId string
 document.addEventListener('mindtouch-web-widget:search-redirect:loaded', ({ data }) => {
    const embedId = data.embedId;
});

Properties

embedId

embedId : string

The id of the widget that uniquely identifies it.

  • Was this article helpful?