How to Pre fill the schedule Form through URL Parameters

Last updated: February 26, 2026

Now you can pre-fill the schedule Form with the data of your users through the URL Parameters so that when users arrive at the form, some of the form fields will be automatically pre-populated for them.

The standard Scheduling Link URL looks something like this:

https://meet.goodtime.io/w/goodtimeio/javier.amador/30-min-phone

 

In order to use this great feature, we will need to add to this link /days at the end of the URL followed by the question mark ? and then the first mandatory URL parameter which is linkSource=meet-dashboard.

So the link will now look like this:

https://meet.goodtime.io/w/goodtimeio/javier.amador/30-min-phone/days?linkSource=meet-dashboard 

 

To add a form field to the URL, we add & then add the form field name, followed by an equal size = and the pre-filled value. Here are some fields that you could use to pre-fill the schedule form:

&givenName=Johnny

&familyName=Test

&email=johnny.test@greattime.io

&phoneNumber=24936819

&companyName=GreatTime

 

You can also add some custom questions (only Text Box is supported at the moment) that you added in the form, for example:

Screen Shot 2022-08-12 at 11.09.18.png

In this case, to pre-fill this field, you only have to use the question as the name of the field (case sensitive), for example:

&Favorite avengers movie?=End Game

 

So our URL will look now like this:

https://meet.goodtime.io/w/goodtimeio/javier.amador/30-min-phone/days?linkSource=meet-dashboard&givenName=Johnny&familyName=Test&email=johnny.test@greattime.io&phoneNumber=24936819&companyName=GreatTime&Favorite avengers movie?=End Game 

 

NOTE: Most browsers do this for you but to be sure try to encode your URL with functions such encodeURI() that encode the URL in Javascript.

https://meet.goodtime.io/w/goodtimeio/javier.amador/30-min-phone/days?linkSource=meet-dashboard&givenName=Johnny&familyName=Test&email=johnny.test@greattime.io&phoneNumber=24936819&companyName=GreatTime&Favorite%20avengers%20movie?=End%20Game

 

So now that we have all set just create the link and let's enjoy some meetings ;)