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
Adds a contact to a specific static list. See the documentation
Fetch services, resources and mappings for the booking widget. See the documentation
Create or update a batch of contacts by its ID or email. 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 HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})