Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
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...
@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.
And there’s another option, which is to not use the Request Campaign API at all. Switch to the Push Lead API and you can filter the trigger on Reason; make the user pass a special, unique reason code.
Well, it's pretty unlikely there's anything wrong with the embed code itself if the form is showing up.But you're right, it only adds confusion if you don't copy and paste the embed code as-is when testing. There are good reasons to load the library only once (e.g. in the head) but you work those ou...
There's no native functionality like this. I would use an API Gateway for more security, i.e. the API users must connect via an intermediate server that does JSON Schema validation/additional authorization. One hack that can kind of accomplish this is requiring a {{my.token}} be passed with a specif...
Please show the relevant Activity Log for the lead and the full Engagement Program setup.
Please link to your page. There's no way to tell, from just that markup, what else you might be including in the form (e.g. in a rich text area) that's breaking submission.