I am running an advertising campaign to get registrations on my Form. When the users click on the advertisement (either ad A or ad
, they go to a landing page with a URL ending in -----.com/?campaign=launch&utm_source=ad_a , and the form is on that landing page. Parameters are key-value pairs that can appear inside URL path
But when I look at the responses to the Smartsheet form, I want to know which advertisement (A vs.
that each particular user clicked on to arrive at the website where they filled out my form.
How can I get the web parameters (key-value pairs in the URL) to auto-populate the Form (as Hidden Fields)?
<form action="https://app.smartsheet.com/b/form" method="GET" >
<input type="hidden" name="EQBCT" value="fbab5300a6d74cc58ae6326e267b3c4f" />
<input type="hidden" name="utm_campaign" value="launch">
<input type="hidden" name="utm_source" value="ad_a">
<input type="text" name="Customer Name" value="">
</form>
I see there are a few related threads in the Community, but no one quite answers this...
Thanks!