So I want to pass a primary id number that gets generated when a form is filled out. There is a column in the view lead display that has a number in it but it does not export with the csv file and i can not find the field to send to the mapping api to pass that to my zoho crm or to my external web site via the post form to url and send to external web site using the get parameters attached to the url.
So basically I want to have the form generate and then grab a lead_ID field when they click submit and pass it as a hidden field on the form so I can map it to my external applications.
I could do this with a bit of javascript to generate a lead id but I can’t find a way to put the code in the form block or affect the form block field values from a javascript code block.
example:
i would like to have unbounce add the url params to my external url like this:
www.example.com/myapp.php?lead_id={le…
and have the {lead_id} filled in with a int that is generated by unbounce that is unique and is the same as the # associated with the lead in the view lead field.