Online Appointment Scheduling
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Acuity Scheduling is a cloud-based appointment scheduling software that enables
businesses to manage their appointments and bookings online. The Acuity
Scheduling API allows developers to access and integrate the functionality of
Acuity Scheduling with other applications.
With the Acuity Scheduling API, you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
acuity_scheduling: {
type: "app",
app: "acuity_scheduling",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://acuityscheduling.com/api/v1/me`,
headers: {
Authorization: `Bearer ${this.acuity_scheduling.$auth.oauth_access_token}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})