Ihr sucht nach Möglichkeiten für effizientere, profitablere Werbung?

Von großen Brands und DTC-Unternehmen bis hin zu Agenturen und Retailern – unsere Plattform hilft allen, mit Commerce Media erfolgreich zu sein.

  • Weltweit größter offener Bestand an Commerce-Daten
  • Branchenführende KI
  • Supply und Demand vereint
  • All-in-One-Lösung
Bereits über 17.000 Kunden vertrauen auf uns!
window.addEventListener("message", receiveMessage, false); function receiveMessage(event) { // Form data ready, update leadObj if (event.data && event.data.message === "PARDOT_DATA_READY" && event.data.data) { leadObj = event.data.data; // Update leadObj } // Form was submitted and validated, call ChiliPiper if (event.data && event.data.message === "PARDOT_FORM_SUCCESS") { let queryString1 = event.data.data; // Step 1: Parse the query string into a JSON object const leadData = {}; const params = queryString1.substring(1).split("&"); params.forEach(param => { const [key, value] = param.split("="); leadData[key] = decodeURIComponent(value.replaceAll("+", " ") || ""); }); const company_type = (leadData["126241_204936pi_126241_204936"] === 'Retailer') ? 'Retail' : leadData["126241_204936pi_126241_204936"]; let country_t = leadData["126241_204933pi_126241_204933"]; if (leadData["126241_204933pi_126241_204933"] === 'Österreich') { country_t = 'Austria' } else if (leadData["126241_204933pi_126241_204933"] === 'Deutschland') { country_t = 'Germany' } else if (leadData["126241_204933pi_126241_204933"] === 'Schweiz') { country_t = 'Switzerland' } //budget let budget_t = leadData["126241_205497pi_126241_205497"]; if (leadData["126241_205497pi_126241_205497"] === '10.000 bis 50.000 USD') { budget_t = '$10k - $50k' } else if (leadData["126241_205497pi_126241_205497"] === '50.000 bis 100.000 USD') { budget_t = '$50k to $100k' } else if (leadData["126241_205497pi_126241_205497"] === '100.000 bis 250.000 USD') { budget_t = '$100k to $250k' } else if (leadData["126241_205497pi_126241_205497"] === '250.000 bis 500.000 USD') { budget_t = '$250k - $500k' } else if (leadData["126241_205497pi_126241_205497"] === '>500.000 USD') { budget_t = '$500k+' } //visitors let visitors_t = leadData["126241_204942pi_126241_204942"]; if (leadData["126241_204942pi_126241_204942"] === '50.000 - 100.0000') { visitors_t = '50,000 - 100,000' } else if (leadData["126241_204942pi_126241_204942"] === '100.000 - 500.000') { visitors_t = '100,000 - 500,000' } else if (leadData["126241_204942pi_126241_204942"] === 'Mehr als 500.000') { visitors_t = 'More than 500,000' } else if (leadData["126241_204942pi_126241_204942"] === 'Nicht sicher') { visitors_t = 'Not sure' } // Step 2: Trigger the ChiliPiper.submit function ChiliPiper.submit("criteo", "vero-test", { trigger: "InAppButton", lead: { PersonEmail: leadData["126241_204921pi_126241_204921"], PersonFirstName: leadData["126241_204915pi_126241_204915"], PersonLastName: leadData["126241_204918pi_126241_204918"], CompanyName: leadData["126241_204927pi_126241_204927"], // replace the value with the value for Company Name "97d0652a-1786-40c2-ac1f-177761c6c314": budget_t, // replace the value with the value for Advertising Budget "48a142eb-1fc2-4551-8f9b-ac6cb8ec5fcc": visitors_t, // replace the value with the value for Unique monthly visitors "5bc9d042-6cdf-4b81-8467-04e8d10607be": country_t, // replace the value with the value for Country "57356c44-1d5a-4d0f-a0b1-7fc3060da088": company_type, //company type "150623cc-30ba-4d58-88e5-19618765d468": '0125J000000D8dEQAS' }, }); } }