Advanced Integration: Lead Data Flow
Lead Data Connectivity
window.addEventListener('userDetails', (e) => {
const { name, email, phone } = e.detail; // or other fields you added to the form
console.log("Lead captured:", name, email, phone);
});Last updated
Was this helpful?