with Zoho Bookings and Adyntel?
Book an appointment for a customer for a desired service. See the documentation
Retrieve all Google ads for a given company domain. See the documentation
Fetch availability of appointments across services. See the documentation
Get details of an appointment See the documentation
The Zoho Bookings API lets you integrate your booking system with other apps and services, automating tasks like scheduling, rescheduling, and cancelling appointments. On Pipedream, you can use this API to trigger workflows, process booking data, synchronize schedules across platforms, and create custom notifications. It's a powerful tool for service-based businesses looking to streamline their operations and enhance customer interaction.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_bookings: {
type: "app",
app: "zoho_bookings",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_bookings.$auth.api_domain}/bookings/v1/json/workspaces`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_bookings.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adyntel: {
type: "app",
app: "adyntel",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.adyntel.$auth.api_key}`,
"email": `${this.adyntel.$auth.username}`,
"company_domain": `pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://api.adyntel.com/google`,
data,
})
},
})