
There is another suggestion to create an object to redirect users to another URL :
https://feedback.continual.ly/36
While I like the idea to have those objects directly in the bot flow for readability…
It’s probably unrealistic to expect every use cases to be covered with a dedicated object.
A more generic approach could be to have an object that would fire a custom JS event on the client side (with current lead variables/tags). So that we can run our own logic when needed (redirect, send data back into the bot, start a new bot, etc…).
Something like
continually.on(‘customEventName’, function(event) console.log(event);
});
