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 Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.