Tracking Marketo form via Adobe Launch
Is there a way to track Marketo form events like start, submit, success and failure in Adobe Analytics using Adobe Launch.
Is there a way to track Marketo form events like start, submit, success and failure in Adobe Analytics using Adobe Launch.
You could probably use an Event Based Rule’s custom Event Type with this and then use _satellite.track("your direct call rule String value"); in a Sequential JavaScript Tag. Similarly do the same for other form events like start, submit, success and failure.
In Adobe Launch, create an event-based rule and select the rule's trigger. To track form submissions, for example, you may utilize the form submit trigger.
Create a data element to gather form data. You can do this by selecting "Custom Code" in the data element setup and writing JavaScript code for collecting form data.
In Adobe Analytics, create a custom event that corresponds to the Marketo form event you want to measure (for example, form submission).
In the Adobe Analytics extension settings in Adobe Launch, map the data from the data element to the custom event.
Publish the modifications and test the tracking with a tool like Adobe Experience Cloud Debugger or the browser console.
You can leverage the marketo api to do something like this [Reference: https://developers.marketo.com/javascript-api/forms/api-reference/]
<script type="text/javascript">
MktoForms2.whenReady(function (form) {
// Add an onSubmit handler
form.onSubmit(function(){
// set function calls here, for example to fire google analytics or adobe analytics tracking
_satellite.track('mrktoFormSubmit');
});
});
</script>
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.