Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
You're welcome, and thank you for posting an update here on the thread. Also, I'm just adding some help articles below on Calendly <> Marketo integration for the ready reference of the users visiting this thread in the future:Syncing scheduled event data to Marketo: When Syncing data is enabled in C...
Indeed, I'm curious to know what activity OP is exactly referring to here as well.
Interesting, and good to know! Thank you, @ttseng! I think the Set up LinkedIn Lead Gen Forms documentation page would be a good place to add this as a Note/Warning so users going through it while setting the integration are aware of this. @claireshenkir, unfortunately, as of now, there doesn't seem...
If the native integration isn't syncing any data to Marketo upon a successful meeting booking (not just on filling out the form), you'd have to set up a custom integration that'd create a custom object record in Marketo when the person books a meeting via Calendly. Once you have this in place, you c...
CRM-synced records aren't de-duplicated, so if you have duplicates in SFDC/records that aren't connected with the corresponding records in Marketo, you'll see the duplicate records syncing in Marketo. I'd caution you with your plan of deleting all person records from Marketo, as by doing so you'd lo...
You can find that in GA > Admin > Under the Property Settings, click on the ‘Tracking info’ and from the drop-down menu. Select ‘Tracking code.’ Make sure you add this tracking code in the tag of your LPs.
Well, no because with the enum usage, we intend to fix that little quirk (within the script locally, of course), so for the scope of the enum, and where it's used to check values, the intended (and logical values) are considered in the velocity, i.e., "" (empty string) = false and not true.
Check out the below article: Integrating Google Analytics with Marketo On the Marketo side, you'd have to deploy the GA tracking code to your Marketo landing page templates, so it's able to track and send engagement data over to the GA. Make sure you re-approve the landing pages after you make updat...
Well, as long as the CO update activity in the person's activity log matches with what you have your tigger, i.e., CO record's EnquirySalesTimescales field gets updated and new value is what you have in your trigger's New Value constraint, the campaign would get fired and the person would flow throu...
Well, you've come across a little quirk of how velocity processes boolean values. In short, the problem is that both "1" and "" (empty string) are processed as being a true value in Velocity. Try the below script: #set( $mktoBoolean = { "1" : true, "" : false } )#foreach ($item in $customerCardList)...