π Native Enrichment by RevenueHero: RevenueHero fills in all your prospect details with just the email. Instant enrichment, automated scheduling, more pipeline! β Learn more
π Native Enrichment by RevenueHero: RevenueHero fills in all your prospect details with just the email. Instant enrichment, automated scheduling, more pipeline! β Learn more
RevenueHero JavaScript events are sent from the scheduler at different stages. Learn about those events that can be used to trigger downstream activities.
The RevenueHero JavaScript tracks and emits the following JavaScript events through the lifecycle of the meeting booking experience which can be captured using a sample message listener like the following to be used for actions like sending event to Google Analytics, Pixel, etc.
Example
Copy
window.addEventListener('message', (ev) => { if(ev.data.type == 'MEETING_BOOKED') { // Send to Google Analytics dataLayer.push({ event: 'meeting_booked' }); // Send to pixel fbq('track', 'RevenueHero', { event: 'meeting_booked' }); }})