Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hi Ronn So you have the right idea. I would think of it this way. You start from this logic block. #if($condition1 = true)###do something#end#if($condition2 = true)##do the same thing#end So your code to combine the conditions will be: #if($condition1 = true || $condition2 = true)###do something#e...
This ^^ If you're only interested in the FIRST time they joined a segment, you can have a Date field in Marketo that you date-stamp via a Smart Campaign if they qualify, and the field is empty. Then you can export that field in a list export and analyse away, or use it in your Smart List filters.
Cool! Many of us have made all the mistakes before with this sort of thing, so let us know if you run into further issues once you get the UI working for you. I know in our instance it takes a long time for all the fields to load up on the right hand panel when we open up an email script token. We w...
To add to this, if it's really important that ongoing you know which phone numbers match the mobile phone number field, you could do that calculation in your CRM (if you are synced in). Eg. build out a Salesforce field which simply checks that one field is the same as another, and returns true or f...
Depends what you mean by "social media data". As others have noted you can capture parameters of new leads on Marketo landing pages, or capture details that people consent to giving you via LinkedIn lead gen forms / Facebook lead gen forms. But you can't take data on likes and comments and put that ...
Are you familiar with Zapier? As Sanford noted, you can't use Marketo webhooks for this purpose, but if you don't have access to a development team then you can do a "quick and dirty" reply handler using Zapier. I believe with Twilio you can set up outgoing webhooks with the response from a user. In...
Hi Lucas Quick answer is: no, I don't believe there is a token you can use which represents the current engagement program stream. However , depending on what you are trying to do, I'm not certain this is the easiest solution. In the activity log you will see what stream someone is in, and when the...
@SanfordWhiteman would this be a use case for something like a JSON dump into a lead file? Each lead that qualifies for the email could have a field which looks something like this: {"clan": "Blue Clan",{"missions": {"A": {"goal": "capture the flag","maxPartyMembers": 6},"B": {"goal": "kills","maxP...
The quick answer is: you can't. To send an email to someone, that person must be in the Marketo database. If you have a csv file then you could upload those email addresses to a static list in Marketo, and then send to them. Ensuring you have valid consent of course 🙂 Note that your Marketo databas...
Ah, thank you! I was passing the details as parameters instead of inside the body of the request. I changed that and now it's working. However, I do find it weird that I get a 200 success response when nothing happened. If you post a change, and no change is posted, surely that shouldn't come back w...