Scheduling View Options
There are different possible views, or layout options, that you can display to your patients. They are:- Basic view → Your patients see available time slots, with availability displayed across multiple providers (provider agnostic).
- Providers view → Your patients see a list of providers, information about the providers, and can view availability across them all at the same time.
- Provider profile view → Your patients see one provider, their information and availability, and can only book with them.
- Cancel / Reschedule → Patients can cancel or reschedule an existing appointment.
Configuration
There are two different levels of configuration that allow you to control the scheduling experience for your patients:- Organization level configuration: This configuration applies across all Morf scheduling links that you share or expose to your patients. The Morf team sets up this configuration under the hood on your behalf. For now, the only configuration that happens at this level is the styling of your UI, i.e. colors, typography, border radius, etc
- URL configuration: This configuration is done via the URL. Based on the URL and URL parameters, Morf knows what and how to display scheduling information to your patient. This can therefore be adjusted whenever you are composing a new scheduling link.
Steps to get started
-
Pick your UI design customizations with Morf
- Fill out the template that was shared with you in your onboarding checklist.
- Share your typeface files with Morf.
- Update your scheduling service API Key via the integrations tab at Morf’s admin dashboard.
- [If showing provider data] Add your provider data, based on the documentation.
- [Talk with Morf team] Compose your direct scheduling links by following directions, or reach out to the Morf team and they can generate a link for you based on your preferences
- [Talk with Morf team] Integrate Morf’s scheduling in your flow
FAQ
Are the pages optimized for all device sizes?
Yes, the scheduling pages are responsive, automatically adjusting to different screen sizes for a smooth experience on desktops, tablets, and smartphones.How do I pass custom data through the scheduling URL?
There are two ways to pass custom data to the scheduling app, which will be available in your workflows via theevent_data field:
Option 1: Pass custom JSON data
For completely custom data structures, use the metadata parameter with a URI-encoded JSON payload.
First, prepare your metadata in the browser console:
event_data:
event_data.form_name- “Test Form”event_data.form_type- “Intake”
parent_url parameter to automatically extract URL parameters from the parent page. This is useful when embedding in an iframe.
For example, if your parent page is https://yoursite.com/book?form_name=Test%20Form&form_type=Intake, you can construct the iframe URL like this:
form_name and form_type) will automatically appear in your workflow’s event_data, along with special fields:
event_data.parent_referrer_url- Full parent page URLevent_data.parent_referrer_domain- Parent page domainevent_data.form_name- “Test Form”event_data.form_type- “Intake”
