SimplyBook.me is an online booking system that is easy to use, yet customizable and flexible enough to fit your business or organization like a glove.
Go to siteSimplyBook.me is a robust appointment scheduling API that enables businesses to manage bookings, clients, and services efficiently. By leveraging the SimplyBook.me API on Pipedream, users can automate the scheduling process, sync data across various platforms, and enhance customer interactions through tailored communications and streamlined workflows. This API integration facilitates real-time booking updates, client management, and service modifications, making it a vital tool for businesses aiming to optimize their appointment scheduling and operational workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
simplybook_me: {
type: "app",
app: "simplybook_me",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://user-api-v2.simplybook.me/admin/bookings/`,
headers: {
"Content-Type": `application/json`,
"X-Token": `${this.simplybook_me.$auth.oauth_access_token}`,
"X-Company-Login": `${this.simplybook_me.$auth.company}`,
},
})
},
})
Automated Appointment Confirmation Emails: Use SimplyBook.me on Pipedream to automate the process of sending confirmation emails through SendGrid or Gmail whenever a new appointment is booked. This can include details such as date, time, and service provider to ensure clients have all the necessary information.
Sync Appointments to Google Calendar: Automatically sync new bookings from SimplyBook.me to a Google Calendar. This workflow can help manage personal or team schedules by ensuring all appointments are visible on one's primary calendar, reducing the risk of double-booking and enhancing time management.
Real-Time Customer Feedback Collection: After an appointment is completed, trigger an automated workflow on Pipedream to send a feedback request via SMS or email through Twilio or SendGrid. This helps in gathering immediate client feedback which can be used to improve services and client satisfaction.
SimplyBook.me uses OAuth authentication. When you connect your SimplyBook.me account, Pipedream will open a popup window where you can sign into SimplyBook.me and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any SimplyBook.me API.
Pipedream requests the following authorization scopes when you connect your account:
POST
https://user-api-v2.simplybook.me/admin/auth
content-type: application/json
company={{custom_fields.company}}
&
login={{custom_fields.email}}
&
password={{custom_fields.password}}
POST
https://user-api-v2.simplybook.me/admin/auth/refresh-token
content-type: application/json
company={{custom_fields.company}}
&
refresh_token={{oauth.refresh_token}}