Enabling Webinar Registration from Pardot (Account Engagement)
Hi, I just integrated zoom and pardot and the marketing team would like to send the webinar link and registration through pardot. I tried to follow the zoom support article for this but the resulting form doesn't work. I think the issue might be in the HTML that they suggest to copy and paste? The HTML text is below. Is it correct to paste in the post url in the? Also, is it correct to input the Webinar ID after value? Or should I put it in after name? Also, the test form I created didn't have all of the suggested inputs like city or zip. Could this have also created the issue? The other thing I suspect could be at work here is in the main pardot-zoom integration the only field I mapped is the webinar link to a my custom field I created for zoom. I also though you need to map every field from zoom to pardot like name and email but when I tried to add those the only pardot fields that came up where the company custom fields so then I couldn't map name or email as these are standard fields. Am I missing something here to?<blockquote>
<form action="your post url" method="POST" name="hidden_form">
<input name="webinarId" type="hidden" value="your webinar id" />
<input name="email" type="hidden" value="%%email{html}%%" />
<input name="first_name" type="hidden" value="%%first_name{html}%%" />
<input name="last_name" type="hidden" value="%%last_name{html}%%" />
<input name="address" type="hidden" value="%%address_one{html}%%" />
<input name="city" type="hidden" value="%%city{html}%%" />
<input name="province" type="hidden" value="%%state{html}%%" />
<input name="zip" type="hidden" value="%%zip{html}%%" />
<input name="phone" type="hidden" value="%%phone{html}%%" />
<input name="industry" type="hidden" value="%%industry{html}%%" />
<input name="org" type="hidden" value="%%company{html}%%" />
<input name="job_title" type="hidden" value="%%job_title{html}%%" /> </form>
</blockquote>
<form action="your post url"
<input name="webinarId" type="hidden" value="your webinar id"
Show less