This article is for the Legacy version of Appointlet. Click here for the instructions on the most recent app version.
If you already have prepopulated all of a user's information and want to skip the fields screen, here's how you can do that.
Please keep in mind that if you skip the fields screen but have not prepopulated all of the required fields, the booking widget will not let the user submit the booking. You have been warned!
Skip Form Fields by URL
If you're linking users to your booking page, here's an example of how to skip the fields screen:
https://<organization-slug>.appointlet.com/?email=hello@world.com&field__name=Jared&skip_fields
If you're using the website integration you can skip the fields screen by adding an additional attribute to your "Book Now" button:
<img
src="https://d35xd5ovpwtfyi.cloudfront.net/loader/buttons/008DBD.png"
data-appointlet-organization="..."
data-appointlet-email="hello@world.com"
data-appointlet-query-skip_fields="1">
Skip Form Fields with the Javascript API
If you're using the Javascript API and want to skip the fields screen, here's how you can do that:
<script>
$(function(){
appointlet({
organization: "...",
query: {
skip_fields: true
}
}).show();
});
</script>