Setmore offers a free, online scheduling platform for you to connect with your customers.
Create a new appointment in Setmore Appointments. See the documentation
Create a new customer in Setmore Appointments. See the documentation
The Setmore API opens doors to automating appointment scheduling and calendar management, allowing you to sync appointments, customer information, and services across different platforms. This seamless integration through Pipedream can trigger workflows from new appointments, update external CRMs with customer data, or prep team communication channels with upcoming schedule details. By harnessing the Setmore API on Pipedream, you're equipping yourself to orchestrate complex operations with simplicity and precision.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
setmoreappointments: {
type: "app",
app: "setmoreappointments",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://developer.setmore.com/api/v1/bookingapi/staffs`,
headers: {
Authorization: `Bearer ${this.setmoreappointments.$auth.oauth_access_token}`,
"Content-Type": `application/json`,
},
})
},
})
The Klaviyo API grants you the power to automate and personalize your email marketing efforts. With it, you can manage lists, profiles, and campaigns, track event-driven communications, and analyze the results. By leveraging this API on Pipedream, you can create intricate, automated workflows that respond in real-time to your users' behavior, sync data across multiple platforms, and tailor your marketing strategies to improve engagement and conversion rates.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
klaviyo: {
type: "app",
app: "klaviyo",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://a.klaviyo.com/api/accounts/`,
headers: {
"Authorization": `Klaviyo-API-Key ${this.klaviyo.$auth.api_key}`,
"revision": `2023-12-15`,
},
})
},
})