Badges
Accepted Solutions
Likes Received
Posts
Discussions
Ideas
Blog Posts
That's not exporting "full form fill data" in any way. It's exporting the current values of the fields, regardless of how they were updated.The data from form submissions is starkly different from the data stored on the lead, especially after time has passed. Form fills are a different dimension exp...
A Wait step is really clumsy here; you can’t know how long to wait and always risk sending a blank value. But I suspect the direct issue in your case is the email isn’t in the program.
You can only export Filled Out Form data using the API. There’s aren’t column(s) that reflect form fields directly.
We can’t troubleshoot a screenshot. Please provide actual code, and use the syntax highlighter to highlight your code as Java (as its syntax is closest to Velocity). In addition, are you trying to output multiple links from Velocity using the same Velocity variable (that is, same ${reference})? Ther...
Just noticed one thing if i add a token in the body ${{my.formattedAmount}} like this it gives an error but if i give $ {{my.formattedAmount}} then it works not sure if thats the issue ?Of course. If you use the prefix ${ that conflicts with Marketo’s email variable syntax. Do don’t put the dollar s...
Yesterday, I tested some code based on suggestions from ChatGPT, but I am unable to locate those details to share with you at the moment.There’s a 0% chance that ChatGPT will give you usable code for Marketo’s Velocity environment. Don’t use it. Lastly, while I was adding the token, I encountered an...
Not providing your (attempted) code, nor even the datatype of this field, makes it harder to provide useful help! If the field is a Float, Currency, or Integer, you want${number.format("${esc.h}${esc.h},${esc.h}${esc.h}${esc.h}",$yourField)}but impossible to say for sure. Please remember to provide ...
Linked Field name is CIFOK, then you obviously can't leave the CIF out of the Person upload as you suggested earlier. That's the field that joins the 2 objects together.
If you were using Person Was Created w/an infinite date lookback, then yes, everyone who filled out the form. By definition, everyone who fills out a form was created!
1. Is Jquery a good way to use in form?I try to avoid jQuery whenever possible. Using vanilla JS is more portable and just as efficient (in some cases much faster). 2. Do we have to update the code when I add new fields in form (If I use the method that you shared)?No, you only have to include field...