Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
A few ways to do this.Here's one way:In Marketo create a textarea field to capture the history of the utm valuesOn 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 cooki...
I'm making assumptions here but... deploying master/global forms doesn't mean just having one form for everything, it's deploying one form fit for purpose across like campaigns, e.g. you're not creating a new form for every event you run, or you're not creating a new form for each piece of gated con...
Correct, you'll have 4 smart campaignsDo tokens work in the flow of Batch Campaigns? I thought it had to be a trigger campaign.Yes tokens work in batch campaigns. You're probably thinking of the {{trigger.}} ones that don'tThe daily batch provides me with the total number of Cancelled Accounts over ...
Data value changes is limited to 3 months of history. You achieve what you need by1. create a smart list/smart campaign and add the filter Data Value Changed, Status is Cancelled Account, Date of Activity is In past 30 days. These meet your criteria of cancelled in the last 30 days or less. 2. creat...
Very broad question, so I'll broadly answer it according to my opinionWebhooks are a 'set your own endpoint', 'Do-It-Yourself', 'one per trigger' way of communicating with cloud platforms (and even your own Marketo instance)Launchpoint is where you can install managed webservices that make use of an...
Alternate solution: nation.marketo.com/thread/50485-pre-fill-workaround
Marketo's landing page and file hosting isn't a blank folder where you can simply paste another folder, but it's not hard to "import" a landing pageHost your assets either on your own file server or in Marketo (hosting on your own server makes things easier since you can preserve the folder structur...
I trying to understand why you need to import merged tables from Power BI. If your sales tool has email addresses and sales data, this is sufficient to import into Marketo. Does your sales tool have an outbound webhook capability?If your sales tool is merely a log and can't track milestones, then is...
Hook up your external service to the field using the forms APIe.g. with fictional servicefunction postalCodeLookup(postalCode){ $.ajax({ method:'POST', url: '//your.webhook.com/endpoint', data: postalCode, // you might need an api key or access token dataType:'json', // i...
Ok, you're right. Looks like the reason the above worked in Firefox private browsing was because Firefox doesn't store cookies. Guess it is working as intended.