Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Thanks Greg. This makes sense and i think that would work.I was intrigued that I could define a trigger like this, but from a technical / backend perspective it doesn't make a lot of sense to be able to trigger on events in the past:Does this just not work in general?I'm an engineer and I've been re...
I currently have a smart campaign to send emails 1 day after a score field on a lead changes.It looks like this:Trigger on score change and filter out some leadsWait 1 dayRemove leads from the campaign that shouldn't qualify (again, in case they now meet the filter)Send emailInstead of waiting a day...
I just want to empty the field.Whether that means it's technically empty or null in the database is related, but I want to do the equivalent of Marketo's magical use of the case-sensitive string NULL. I think this actually does set the field to a null value on the backend since the activity log show...
Is this possible?Let's say I have a field named HighestScoredCategory and I update that with a webhook that returns JSON such as {"categoryName":"Invitations"} that writes categoryName to HighestScoredCategory.Is it possible to return something like {"categoryName":null}, to clear the contents of Hi...
Hi Greg,With the workaround, is it possible to have a trigger that only fires on positive score changes? It doesn't look like you could say "Data Value Changes", New Value greater than {Previous Value} and that you could only choose a static number.I want my campaigns to start only when scores go up...
Unfortunately, the only possible solution in my case is to have a webhook that calls an API you write to deduplicate leads. You would call this webhook any time a new account is created where the email address isn't empty and the source wasn't Marketo. For example, in my case, leads must be created ...
Hi Jep,Thanks for the info. I'm now trying to split up batches by using both sinceLatest and sinceOldest with a 1 day span. I will then try to parallelize this by getting leads from each day in batches, then combining all those into 1 big list to deduplicate everything. However, I'm getting unexpect...
Hi Murtza. Thanks for the quick response.That's exactly what I'm using right now and the API just hangs. See in my post above I have the following in my example: leadSelector.setOldestUpdatedAt(factory.newXMLGregorianCalendar(since));As is, it's impossible for me to get all the data I need due to...
getMultiple leads is hanging for me even with a batch size of 1 or 50 vs 1000. It simply never returns.I'm trying to get all leads so that I can deduplicate them all. I have logic to grab leads in batches of 1000 where I only return 2 fields for the best performance. This was working fine in May whe...
Hi Murtza,We've had this running for a while, and it turns out it's not quite working as expected.QUESTION: In what scenarios can duplicate leads be created?When you fill out your email on our site, I call associateLead from Munchkin. We are seeing many duplicates, but from the Munchkin documention ...