Send custom events from the webchat to your web app

You can setup your Bot to send custom events for your web application. To set this up:

  1. In the Botpress Studio, add a "Send Custom Event" Card to a node.

  2. In your web application you can catch these like the following:

window.botpress.on('customEvent', (event) => {
  console.log(event);
	// Your custom logic
});