All Collections
API / Custom Integration
Integrating your Schedulista scheduler into a custom flow
Integrating your Schedulista scheduler into a custom flow

Direct clients with a link after they finish scheduling

Matt Tucker avatar
Written by Matt Tucker
Updated over a week ago

Schedulista allows your clients to book with you online 24/7. You add your services and set your regular schedule and appointment times so that clients can book with you only when you want to be available.

You can add a link or button to your standalone scheduling page to your own website -- or emails or social media -- to allow clients to book. You also have the option to embed the scheduler in a widget on your website so that clients don't have to leave your site to schedule their appointments.

You may want to set up a manual redirect to get your clients back to your website. This can be done in a custom flow.

Note about redirects

Schedulista does not currently offer the ability to automatically redirect from the online appointment summary/confirmation page to a different page or website.

This option adds a link on the appointment summary page that would redirect clients to your website, to a different page on your website, or to another website once they've finished scheduling, if necessary. This custom flow allows you to integrate scheduling into a specific customer experience.

Contents:

Integrating your scheduler into a flow

Adding a query string -- everything following the question mark [?] -- to the scheduler URL will define the behavior of the scheduler in the custom flow.

(1) Go to Settings > Let clients know

(2) Copy the URL for your scheduler

(3) Add a forward slash (/) and then a question mark (?) to the end of your URL

(4) Add parameters of the query string (see below), separated by an ampersand (&)

e.g. https://salon.schedulista.com?rt_text=[text will go here]&rt_url=[URL to redirect clients will go here]

URL parameters

Parameters are passed as part of the URL query string in the same way as described here. All parameters are optional, but if added, parameters must be URL-encoded.

The flow parameters are:

  • rt_url -- The return URL

  • rt_text (optional) -- The anchor text (highlighted in the screenshot in the What clients will see section below)

Note: To create a space in the text, add a plus (+) sign between words.

For example, rt_text=Finish+scheduling+at+my-website.com%2Fcustom-page

Example

Our demo hair salon wants to direct clients to a page on their site after the client schedules their appointment. Adding a query string to the salon's scheduler URL will create a link to the custom site page on the appointment summary page.

The URL will look like this:

What clients will see

Clients will see this on the summary page:

Using the scheduler widget in a custom flow

You can use the custom flow URL for the scheduler widget you embed on your own website in the HTML code for the widget.

You would replace the standard scheduler source ("src") URL for the iframe with the custom flow URL (in bold below).

Original: 

<iframe id="schedulista-widget-00" src="https://www.schedulista.com/schedule/salon?mode=widget" allowtransparency="true" frameborder="0" scrolling="no" width="100%" height="900px"></iframe><script id="schedulista-widget-script-00" type="text/javascript" src="https://www.schedulista.com/schedule/salon/widget.js"></script>

Updated: 

<iframe id="schedulista-widget-00" src="https://www.schedulista.com/schedule/salon?rt_text=Finish+scheduling+at+my-website.com%2Fcustom-page&rt_url=https%3A%2F%2Fmy-website.com%2Fcustom-page&mode=widget" allowtransparency="true" frameborder="0" scrolling="no" width="100%" height="900px"></iframe><script id="schedulista-widget-script-00" type="text/javascript" src="https://www.schedulista.com/schedule/salon/widget.js"></script>

Using the Schedule Now button in a custom flow

Adding a Schedule Now button allows you to link clients from your site to the standalone scheduling page we've created for your account.

For the button in a custom flow, you would replace the reference ("href") URL for the link with the custom flow URL (in bold below).

Original: 

<a href='https://salon.schedulista.com' target='_blank'><img alt='Schedule an Online Appointment' height='44px' src='https://www.schedulista.com/assets/schedule_button@2x.png' title='Schedule an Appointment Online'></a>

Updated: 

Related articles:

Did this answer your question?