Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Agreed there’s a bug in that the Get Failures endpoint removes empty fields completely instead of maintaining them in the response file. My recommendation is to create a custom field Import Row Number (Integer) on the back end. Then always use that as the first column in the CSV. The Get Failures en...
You’d have to link to your page.
Why do think you need Velocity, rather than the fields’ corresponding {{lead.tokens}}? (There are many fitting reasons to use Velocity, just need more detail before continuing.)
Like so:#set( $sortedList = $sorter.sort($SomeObject_cList,"updatedAt:desc") )#set( $focusedObject = $sortedList[0] )#if( !$focusedObject.someField.equals($lead.someRelatedField) )#throw( "ObjectRelationshipError" )#end Where the #throw Velocimacro is defined:#macro( throw $message )#if( !$message.i...
We talk a lot about race conditions in the Marketo community, and I love reminding folks certain operations aren’t guaranteed to complete in flow step order.[1] Unfortunately, users tend to overcorrect, forgetting Marketo does guarantee order in many cases, just not all sensitive cases! This came u...
The longstanding “Token is already in use and cannot be deleted” bug is the subject of several frustrated Nation threads. Worse, no one is 100% sure when an overridden {{my.token}} becomes non-deleteable. (Some say it’s only non-deletable when it’s inside a
@MariaT please return to your thread and check responses.
#set( $locale = $convert.toLocale("fr_FR") )#set( $formatString = "dd MMMM yyyy" )#set( $formattedStartDate = $date.format($formatString, $startDate, $locale) )#set( $formattedEndDate = $date.format($formatString, $endDate, $locale) )${formattedStartDate}#if( !$formattedStartDate.equals($formattedEn...
No, you can't compare 2 field values in a filter.In this specific case I'd use a Velocity token to compare the values and abort the send if they don't match.
You don't need a new field. Use Velocity – there was a thread discussing this exact topic on the past week.Permanently altering the field isn't possible using Velocity, nor with Change Data Value. You need a webhook-compatible service to do that.