with SuperSaaS and Lamini?
Emits an event for every user credit balance changes for the selected schedules.
Emits an event for every changed appointments from the selected schedules.
Emit new events with the status of a training job. See the documentation
Create a fine-tuning job with a dataset. See the documentation
Generate completions using a Lamini model. See the documentation
Retrieve the results of a batch completion request from Lamini. See the documentation
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}`,
},
})
},
})
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`,
},
})
},
})