I have my Calendly appointment booking calendar embedded inline on my website. I need to pass parameters (name, email, phone) into the form via the URL. When I could just link directly to the Calendly appointment (not having it embedded on the website), I could just add the parameters into the URL and it would automatically prefill the form fields: http://www.calendly.com?firstName=first&lastName=last&email=email&a2=phone. But now that I have to have it embedded on this website, putting the parameters at the end of the url http://www.mywebsite.com?firstName=first&lastName=last&email=email&a2=phone it does not fill the fields on the embedded form. Is there a way that I can pull the parameters into the fields via adding something to the embed code? Here's the embed code:
<!-- Calendly inline widget begin -->
<div class="calendly-inline-widget" data-url="https://calendly.com/[my meeting link]" style="min-width:320px;height:630px;"></div>
<script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script>
<!-- Calendly inline widget end -->
data-urlattribute of thedivthat will contain the embedded Calendly page, not to your host webpage. Although you can certainly have them in both places if you need to. Please see this answer: stackoverflow.com/questions/66749644/…