SuperSaaS

Appointment Scheduling for Every Situation

Integrate the SuperSaaS API with the Zoom Admin API

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

Add meeting registrant with Zoom Admin API on Credit balance changes from SuperSaaS API
SuperSaaS + Zoom Admin
 
Try it
Add meeting registrant with Zoom Admin API on New or changed appointments from SuperSaaS API
SuperSaaS + Zoom Admin
 
Try it
Add webinar panelist with Zoom Admin API on Credit balance changes from SuperSaaS API
SuperSaaS + Zoom Admin
 
Try it
Add webinar panelist with Zoom Admin API on New or changed appointments from SuperSaaS API
SuperSaaS + Zoom Admin
 
Try it
Add webinar registrant with Zoom Admin API on Credit balance changes from SuperSaaS API
SuperSaaS + Zoom Admin
 
Try it
Credit balance changes from the SuperSaaS API

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

 
Try it
Account Created from the Zoom Admin API

Emits an event each time a sub-account is created in your master account

 
Try it
New or changed appointments from the SuperSaaS API

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

 
Try it
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
Try it
New or changed users from the SuperSaaS API

Emits an event for every new and changed user.

 
Try it
Add meeting registrant with the Zoom Admin API

Register a participant for a meeting. See the docs here

 
Try it
Add webinar panelist with the Zoom Admin API

Register a panelist for a webinar. See the docs here

 
Try it
Add webinar registrant with the Zoom Admin API

Register a participant for a webinar. See the docs here

 
Try it
Create a meeting with the Zoom Admin API

Create a new room in zoom. See the docs here

 
Try it
Create Webinar with the Zoom Admin API

Create a webinar for an user. See the docs here

 
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}`,
      },
    })
  },
})

Connect Zoom Admin

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: {
    zoom_admin: {
      type: "app",
      app: "zoom_admin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom_admin.$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.