submit lead

User submit lead form information

Function

web_event.track("lead_form", "submit", {
      items: [{list attributes of Business Object}],
      dims: {the relation items},
      extra: {the extra properties}
  });

Case 1 : Submit lead form

User submit lead form with these informations such as name, phone, email,....,etc

The params are these attributes of the business object in CDP

web_event.track("lead_form", "submit", {
     items: [{
        "type": "lead",
        "name": "Barack Obama",
        "phone": "0912345678",
        "email": "[email protected]",
        "lead_event": "QR code events",
        "lead_attribue_code1": "Custom value 1",
        "lead_attribue_code2": "Custom value 2",
        "lead_attribue_codeN": "Custom value n",
        "lead_locate": window.location.href // fixed this attribute
    }]
});

Case 2 : Submit lead form & Create customer

User submit lead form with these informations such as name, phone, email,....,etc and create a customer from lead form

Last updated

Was this helpful?