Cliento is a modern and complete booking system, with our app you can take your booking system with you wherever you go.
Fetch settings and features for the booking widget. See the documentation
Fetch services, resources and mappings for the booking widget. See the documentation
Fetch available slots for the given service, resource and dates. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cliento: {
type: "app",
app: "cliento",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://cliento.com/api/v2/partner/cliento/${this.cliento.$auth.account_id}/ref-data/`,
headers: {
"accept": `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`,
},
})
},
})