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.
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}`,
},
})
},
})
Calendar Sync with Google Calendar: Automatically sync new SuperSaaS appointments to a Google Calendar. When an appointment is booked in SuperSaaS, Pipedream triggers a workflow that creates or updates an event in Google Calendar, ensuring your schedule is always up-to-date.
Customer Follow-Up via Email: Streamline communication by setting up an automation that sends personalized follow-up emails through SendGrid or Mailgun after a client books an appointment. Pipedream can capture booking details and use them to populate and dispatch a tailored email, enhancing the customer experience with minimal manual intervention.
Payment Processing with Stripe: Integrate SuperSaaS with Stripe to automate payment capture after a booking is made. When an appointment is scheduled and marked as paid in SuperSaaS, Pipedream can trigger a corresponding charge in Stripe, streamlining the revenue collection process for your business.
SuperSaaS uses API keys for authentication. When you connect your SuperSaaS account, Pipedream securely stores the keys so you can easily authenticate to SuperSaaS APIs in both code and no-code steps.
You can find your account name and API key in the Account Info section of your settings. See the Authentication docs for more info.