Hi Everyone,
I've been searching for days and have not been able to find an answer to this question. I'm new to Marketo so at the moment I'm just chalking this up to a lack of understanding rather than a platform limitation.
Our business relies heavily on display advertising to fill the top of our funnel and customers generally require between 8-12 touch points before we capture a lead. Once they do convert, understanding what display ads the lead was exposed to and what ad ultimately led to conversion has a big impact on how the sales team engages the lead.
We have a standardized URL tracking template for all display ads and I can see that the URL parameters are visible in the activity log but I'm not sure the best way to "Store" this data and "Present" it to sales. Ideally I would be able to provide the lead's contact information with something that looks like this:
This way our sales team can see what display campaigns got interacted with and what campaign ultimately converted them. In this case we would engage on Red Shoes, and highlight our Basketball Shoe catalog.
I'm open to pretty much any strategy here and would say Marketo knowledge is the biggest gap. I've got a team of developers and I can structure the Google Ads campaign to pass anything a URL parameter so any thoughts on how to achieve this would be amazing.
Solved! Go to Solution.
A few ways to do this.
Here's one way:
In Marketo create a textarea field to capture the history of the utm values
On your site, implement your own cookie that cumulatively date stamps and tracks the utm values (save the cookie as string, update the cookie as a json array)
On form submit, save the cookie data to Marketo as a string to the textarea field you created
In your email alert to sales, use velocity to parse the json formatted string and use foreach to build a list/table of touchpoints
A few ways to do this.
Here's one way:
In Marketo create a textarea field to capture the history of the utm values
On your site, implement your own cookie that cumulatively date stamps and tracks the utm values (save the cookie as string, update the cookie as a json array)
On form submit, save the cookie data to Marketo as a string to the textarea field you created
In your email alert to sales, use velocity to parse the json formatted string and use foreach to build a list/table of touchpoints