Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Hello,Our analytics team is setting up a "Campaign Tracker" that takes activity output from the Marketo API and stores in in their system.We have some emails that use variable data based off a Lead's record (products, etc) basically if they have A show B and if they don't have A show A type of thing...
⚠️ This post was edited for accuracy. Hello!I believe Email Address is the default and cannot be changed (EDIT: it’s true that for list imports via the UI the default lookup field is Email, but this is not true of imports via the API). But you can add secondary de-duplication key (in your case, Mob...
Opps sorry, "AND" would be the logic - looking for those who are at exactly 365 days for a 1-year email.
Hello,Looking to do a basic pull for a Custom Object Record of Membership Date that is 1 year ago to the day. In theory this should work according to everything I've read:But it's pulling all sorts of different dates for the field. When dealing with Custom Object records, is this an issue with the S...
Thank you! I figured this was the case, but was looking for confirmation.
Have had a few cases where we have Wait steps in a batch or trigger campaign set to a specific date and time and then if we make edits to that Wait step before it actually hits - sometimes the change doesn't apply.For example, I have a Wait step set to wait until April 12th at 3:00 PM CST and then s...
Thank you! Got it to work with: ##Standard Velocity Date/Time Fields#set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/Chicago") )#set( $defaultLocale = $date.getLocale() )#set( $calNow = $date.getCalendar() )#set( $ret = $calNow.setTimeZone($defaultTimeZone) )#set( $calConst = $field...
Got it makes sense - I'm close but not sure what's incorrect with my output:## iterate Customer Profiles, looking for those with Membership Opening yesterday#foreach( $item in $customerProfilesList )#set( $membershipOpeningDate = $convert.parseDate( $item.membershipDate, $ISO8601DateOnly, ...
I got it to work in theory, as setting it outside the #foreach loop will display correctly - as in it takes the full name of all records, but then it ignores my #if conditional statement.##Standard Velocity Date/Time Fields#set( $defaultTimeZone = $date.getTimeZone().getTimeZone("America/Chicago") )...