Skip to main content
NICE CXone Expert

We will be updating our infrastructure on Dec 2, 2023. Sites will be down starting at 8pm Pacific time. This may last up to 3 hours.

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?