Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
Email Scripting in Marketo is really Apache Velocity and it's quite powerful once you get the syntax down. 1. Should be fine, but you should store the URL without the https:// OR strip it in Velocity. In order for the links to work you need to output Velocity Link2. This is a good example for usin...
Not natively but you can with the API. If you're storing Order Data/Status It sounds like you may want a custom object to store the data. (unless a record only ever has 1 order)After the data is on the lead record or in a custom object you can merge it into emails.Hope it helps!
hmm.. did you check what the activityTypeIds are ? This will retrieve a list: https://developers.marketo.com/rest-api/lead-database/activities/#describe In my instance values 4 and 5 aren't listed. Not sure if that's true for all, but worth checking
What happens if you remove the 'Z' on the end of the date/times?
oh! I also thought you meant events as in live events vs. an event tracker. As Sanford mentions, these are called activities in Marketo. Unless your volume is extremely low, I would not recommend a webhook for this purpose either. In my current instance we get this data with the Bulk Extract API:...
Hi, If you were to make a program token called {{my.eventTracker}} and then add that to your webhook when setting it up- I believe it will do what you would like. If the campaigns aren't nested in programs a folder token could potentially work. hope it helps!
Looking at your code it is my recommendation to rename all images replacing any spaces or '%20' values with an underscore ( _ ) or dash ( - ) then re-upload them to Marketo. Then update your code accordingly. When troubleshooting this type of issue- I always check and make sure there are no image na...
Out of the box, there isn't a way to aggregate the list such that there's 1 webhook call w/several leads passed in vs. 1 webhook per lead. What you can do is:- use the API to fetch the listId- do whatever processing you want with the external data source or web service- update the records in Marketo...
Hello there are a few ways to do what you would like. My suggestion is based on providing some new options to get even more out of Velocity:Basically, you could set a default value and then override it if they have a confirmed training session. This technique would let you have a dynamic message or ...
Thought so, that's part of the reason I replied. To help an old pal with a complicated problem Here are some quick thoughts: Custom Activities are good to log an event and associated attributes where you do not need to reference those attributes in an email. Generally these are to log events wh...