SuperSaaS

Appointment Scheduling for Every Situation

Integrate the SuperSaaS API with the Mailgun API

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

Create Mailing List Member with Mailgun API on Credit balance changes from SuperSaaS API
SuperSaaS + Mailgun
 
Try it
Create Mailing List Member with Mailgun API on New or changed appointments from SuperSaaS API
SuperSaaS + Mailgun
 
Try it
Create Route with Mailgun API on Credit balance changes from SuperSaaS API
SuperSaaS + Mailgun
 
Try it
Create Route with Mailgun API on New or changed appointments from SuperSaaS API
SuperSaaS + Mailgun
 
Try it
Delete Mailing List Member with Mailgun API on Credit balance changes from SuperSaaS API
SuperSaaS + Mailgun
 
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
New or changed users from the SuperSaaS API

Emits an event for every new and changed user.

 
Try it
New Bounce (Instant) from the Mailgun API

Emit new event when the email recipient could not be reached.

 
Try it
New Click (Instant) from the Mailgun API

Emit new event when the email recipient clicked on a link in the email. Open tracking must be enabled in the Mailgun control panel, and the CNAME record must be pointing to mailgun.org. See more at the Mailgun User's Manual Tracking Messages section

 
Try it
Create Mailing List Member with the Mailgun API

Add to an existing mailing list. See the docs here

 
Try it
Create Route with the Mailgun API

Create a new route. See the docs here

 
Try it
Delete Mailing List Member with the Mailgun API

Delete a mailing list member by address. See the docs here

 
Try it
Get Mailing List Member with the Mailgun API

Retrieve a mailing list member by address. See the docs here

 
Try it
Get Mailing List Members with the Mailgun API

List all mailing list members. 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}`,
      },
    })
  },
})

Overview of Mailgun

Mailgun allows you to send and receive emails using their API. With Mailgun,
you can build a variety of applications and services that can send or receive
emails. Here are a few examples of what you can build with Mailgun:

  • A simple email service that can send or receive emails
  • An email marketing service that can send mass emails
  • A notification service that can send emails when certain events occur
  • A task management service that can send emails when tasks are due
  • A customer support service that can send or receive emails from customers

Connect Mailgun

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: {
    mailgun: {
      type: "app",
      app: "mailgun",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.mailgun.$auth.region && this.mailgun.$auth.region === "EU" ? "api.eu" : "api"}.mailgun.net/v3/domains`,
      auth: {
        username: `api`,
        password: `${this.mailgun.$auth.api_key}`,
      },
    })
  },
})

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.