SuperSaaS

Appointment Scheduling for Every Situation

Integrate the SuperSaaS API with the Google Drive API

Setup the SuperSaaS API trigger to run a workflow which integrates with the Google Drive API. Pipedream's integration platform allows you to integrate SuperSaaS and Google Drive remarkably fast. Free for developers.

Add File Sharing Preference with Google Drive API on Credit balance changes from SuperSaaS API
SuperSaaS + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on New or changed appointments from SuperSaaS API
SuperSaaS + Google Drive
 
Try it
Copy File with Google Drive API on Credit balance changes from SuperSaaS API
SuperSaaS + Google Drive
 
Try it
Copy File with Google Drive API on New or changed appointments from SuperSaaS API
SuperSaaS + Google Drive
 
Try it
Create a New File with Google Drive API on Credit balance changes from SuperSaaS API
SuperSaaS + Google Drive
 
Try it
Credit balance changes from the SuperSaaS API

Emits an event for every user credit balance changes for the selected schedules.

 
Try it
New or changed appointments from the SuperSaaS API

Emits an event for every changed appointments from the selected schedules.

 
Try it
Changes to Specific Files from the Google Drive API

Watches for changes to specific files, emitting an event any time a change is made to one of those files. To watch for changes to shared drive files, use the Changes to Specific Files (Shared Drive) source instead.

 
Try it
New or changed users from the SuperSaaS API

Emits an event for every new and changed user.

 
Try it
Changes to Specific Files (Shared Drive) from the Google Drive API

Watches for changes to specific files in a shared drive, emitting an event any time a change is made to one of those files

 
Try it
Add File Sharing Preference with the Google Drive API

Add a sharing permission to the sharing preferences of a file or folder and provide a sharing URL. See the docs for more information

 
Try it
Copy File with the Google Drive API

Create a copy of the specified file. See the docs for more information

 
Try it
Create a New File with the Google Drive API

Create a new file from a URL or /tmp/filepath. See the docs for more information

 
Try it
Create Folder with the Google Drive API

Create a new empty folder. See the docs for more information

 
Try it
Create New File From Template with the Google Drive API

Create a new Google Docs file from a template. Optionally include placeholders in the template document that will get replaced from this action. See documentation

 
Try it

Overview of SuperSaaS

With the SuperSaaS API, you can build a variety of applications and services to
help manage appointment bookings and scheduling. This flexible and powerful API
can be used to create automated workflows, powerful integrations, and robust
back-end services.

SuperSaaS provides a comprehensive set of features, including access to your
appointments and scheduling data, making it possible to build a variety of
projects:

  • Create a custom online booking service, using SuperSaaS authentication and
    scheduling tools
  • Develop a connected calendar to sync bookings with popular products like
    Outlook, Google Calendar, Apple Calendar
  • Develop a custom dashboard for customers to easily manage their appointments
  • Leverage advanced analytics to track appointment trends and gain insights
  • Automate appointment reminders and notifications workflows
  • Use SuperSaaS payment gateway to accept payments securely
  • Build multi-user, multi-office appointment scheduling systems
  • Connect with other products, like Slack, to automatically post appointment
    and scheduling updates
  • Develop custom forms and templates to collect information from booking
    customers
  • Create custom pricing models and rules for each appointment
  • Create an admin interface for managing any aspect of appointment bookings

Connect SuperSaaS

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    supersaas: {
      type: "app",
      app: "supersaas",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.supersaas.com/api/schedules.json`,
      params: {
        account: `${this.supersaas.$auth.account}`,
        api_key: `${this.supersaas.$auth.api_key}`,
      },
    })
  },
})

Overview of Google Drive

Using the Google Drive API, you can build applications that:

  • Create and manage files and folders
  • Download and upload files
  • Share and organize files
  • Search for files
  • Track changes to files
  • And much more!

Connect Google Drive

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    google_drive: {
      type: "app",
      app: "google_drive",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_drive.$auth.oauth_access_token}`,
      },
    })
  },
})

Community Posts

Logging user credit changes using Google Sheets and Pipedream
Logging user credit changes using Google Sheets and Pipedream
One of the nice features SuperSaaS is a credit system which allows end-users to buy credit once and then easily pay for appointments without needing to go through the checkout each time. There are multiple things that can affect a credit balance. Credit purchases and new appointment, obviously, but also refunds due to canceled appointments, and manual credit adjustments by a superuser. This post is a step-by-step tutorial for setting up the logging of user credit information to a Google Sheet using Pipedream, a powerful API integration service.