What do you want to automate

with SuperSaaS and Lamini?

Prompt, edit and deploy AI agents that connect to SuperSaaS, Lamini and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Create Fine-Tune Job with Lamini API on Credit balance changes from SuperSaaS API
SuperSaaS + Lamini
 
Try it
Create Fine-Tune Job with Lamini API on New or changed appointments from SuperSaaS API
SuperSaaS + Lamini
 
Try it
Evaluate Job with Lamini API on Credit balance changes from SuperSaaS API
SuperSaaS + Lamini
 
Try it
Evaluate Job with Lamini API on New or changed appointments from SuperSaaS API
SuperSaaS + Lamini
 
Try it
Generate Completion with Lamini API on Credit balance changes from SuperSaaS API
SuperSaaS + Lamini
 
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 Job Status from the Lamini API

Emit new events with the status of a training job. See the documentation

 
Try it
Create Fine-Tune Job with the Lamini API

Create a fine-tuning job with a dataset. See the documentation

 
Try it
Evaluate Job with the Lamini API

Evaluate a fine-tuning job by job ID. See the documentation

 
Try it
Generate Completion with the Lamini API

Generate completions using a Lamini model. See the documentation

 
Try it
Get Batch Completions with the Lamini API

Retrieve the results of a batch completion request from Lamini. See the documentation

 
Try it
Upload Dataset with the Lamini API

Upload a dataset to Lamini for training.

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

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

Connect Lamini

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: {
    lamini: {
      type: "app",
      app: "lamini",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.lamini.ai/v2/classifier/projects`,
      headers: {
        Authorization: `Bearer ${this.lamini.$auth.api_key}`,
        "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.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo