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:
-
In the Botpress Studio, add a "Send Custom Event" Card to a node.
-
In your web application you can catch these like the following:
window.botpress.on('customEvent', (event) => {
console.log(event);
// Your custom logic
});
Updated 27 days ago
What’s Next