Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Say for example, if abc@test.com gets processed before email@test.com then webhook will not be called because of email address comparison to email@test.com. In such case UTM parameters will not be populated with tag values in the email that was sent to abc@test.com. Thanks,Babu
Thank you, Sanford!So I would have toAdd a lead record say email@test.com to the list which is being used to send campaign emailsCheck if email address is email@test.com in the choice of Call Webhook flow step and call Webhook if email matches. This will ensure that Webhook is called only one timeIf...
Hi Sanford,This is in continuation to our discussion on "Accessing tag values" thread. Opening a new thread as "Accessing tag values" was marked as solved.Quick recap from the previous threadWe can not access tag values via Marketo in-built token like how we access Lead attributesRead program tag va...
Thank you, Sanford!What you are saying is, get the program tags values and populate my token(s) via API and use these my token(s) in UTM parameters.is there any trigger to use where I can invoke a webhook as soon as program is cloned/created? this webhook will invoke an API call accepting program na...
Hi,I am wondering if we can access program tag values via token or any other means. We are looking to include tag values in UTM parameters. Please advise. Thanks,Babu
Thank you, Sanford!I will explain with below example to make sure my understanding is correcttest1@test.com,1234,vieweddocument,Doc1,2024-02-01test1@test.com,2345,vieweddocument,Doc2,2024-04-10test2@test.com,3456,vieweddocument,Doc3,2024-01-20test2@test.com,4567,vieweddocument,Doc4,2024-05-25 If we ...
Thank you, Sanford!I am on the same page with you.We can see all CO records of test1@test.com only in velocity script If test1@test.com is qualified based on the smartlist filter criteriaNeed to apply a check to filter out unwanted CO records of test1@test.com in velocity scriptThank you so much! T...
Hi Sanford,Thanks for the response!I did read your previous threads on looping through CO. I am looking for Instead of #foreach($item in $COList) #if($item.activityDate <= '2024-02-01') parse the data #end#endCan I identify qualified emails records like#foreach($item in $qualifiedlist) p...