Returning Company Settings

Company settings are set at the Company level within the OnSched Portal, however, some settings such as enabling a Default Service may be overridden at the Business level unique to each Location.

📘

Add/Edit within OnSched Portal

You may add or edit any of the overall Company settings within the OnSched Portal.

var data = JSON.stringify(false);

var xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener("readystatechange", function () {
  if (this.readyState === this.DONE) {
    console.log(this.responseText);
  }
});

xhr.open("GET", "http://example.com//consumer/v1/settings");

xhr.send(data);

Customer Verification

Enabling Customer verification forces a login or registration during the booking flow. By forcing Customers to log in prior to booking a Service it allows them to return to the booking flow and have access to their past and upcoming Appointments, the status, and also the ability to cancel or reschedule.

Resource Selection Enabled

Resource selection triggers the list of available Resources to appear during the booking flow, allowing a customer to select which Resource they would like to book with. To separate booking flows by resource, Resource selection must be enabled and each booking flow will begin at the URL designated to that Resource. For example:

  • |
  • < !-- Book with The Joker -->
  • |
  • |
  • < div class="row">
  • < div class="col s12">
  • < iframe src="https://sandbox-booking.onsched.com/booking/F27A6D0D-
  • 1163-4ACF-8813-511041521327/16be1098-
  • b77b-4936-bdc9-ce12add32d3e/1494/4988"
  • width="100%" height="100%">
  • < /div>
  • < /div>
  • |
  • |
  • < !-- Book with Batman -->
  • |
  • |
  • < div class="row">
  • < div class="col s12">
  • < iframe src="https://sandbox-booking.onsched.com/booking/F27A6D0D-
  • 1163-4ACF-8813-511041521327/16be1098-
  • b77b-4936-bdc9-ce12add32d3e/1494/4978"
  • width="100%" height="100%">
  • < /div>
  • < /div>
  • |