SuperSaaS

Appointment Scheduling for Every Situation

Integrate the SuperSaaS API with the Discord API

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

Send Message (Advanced) with Discord API on Credit balance changes from SuperSaaS API
SuperSaaS + Discord
 
Try it
Send Message (Advanced) with Discord API on New or changed appointments from SuperSaaS API
SuperSaaS + Discord
 
Try it
Send Message with Discord API on Credit balance changes from SuperSaaS API
SuperSaaS + Discord
 
Try it
Send Message with Discord API on New or changed appointments from SuperSaaS API
SuperSaaS + Discord
 
Try it
Send Message With File with Discord API on Credit balance changes from SuperSaaS API
SuperSaaS + Discord
 
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 Message (Instant) from the Discord API

Emit new event for each message posted to one or more channels in a Discord server

 
Try it
New or changed appointments from the SuperSaaS API

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

 
Try it
Message Deleted (Instant) from the Discord API

Emit new event for each message deleted

 
Try it
New or changed users from the SuperSaaS API

Emits an event for every new and changed user.

 
Try it
Send Message with the Discord API

Send a simple message to a Discord channel

 
Try it
Send Message (Advanced) with the Discord API

Send a simple or structured message (using embeds) to a Discord channel

 
Try it
Send Message With File with the Discord API

Post a message with an attached file

 
Try it

Overview of SuperSaaS

The SuperSaaS API unlocks the power to automate and streamline your appointment scheduling processes. This tool is tailored for businesses and individuals who manage bookings, reservations, or rentals. By leveraging the API with Pipedream's integration capabilities, you can craft custom workflows that handle everything from syncing appointment data with your calendar, sending customized notifications, to processing payments or follow-ups based on booking activities.

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 Discord

The Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.

Connect Discord

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: {
    discord: {
      type: "app",
      app: "discord",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://discord.com/api/users/@me`,
      headers: {
        Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
        "accept": `application/json`,
      },
    })
  },
})

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.