with Zoho Bookings and Trunkrs?
Emit new event when a new shipment is created. See the documentation
Emit new event when a shipment is cancelled. See the documentation
Emit new event when a shipment is reviewed. See the documentation
Emit new event when a shipment state is updated. See the documentation
Book an appointment for a customer for a desired service. 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: {
trunkrs: {
type: "app",
app: "trunkrs",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.trunkrs.$auth.environment}/api/v2/shipments`,
headers: {
"x-api-key": `${this.trunkrs.$auth.api_key}`,
},
})
},
})