calendly.getEventType returns scheduling configuration, duration, questions, locations, profile, visibility, pooling, and lifecycle fields.
automations/get-calendly-event-type.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get one Calendly event type by UUID.
calendly.getEventType returns scheduling configuration, duration, questions, locations, profile, visibility, pooling, and lifecycle fields.
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Get Calendly event type", () => {
onDashboardRun({ title: "Get Calendly event type" })
const eventType = calendly.getEventType({ eventTypeId: "event-type-id" })
sendEmail({
subject: eventType.name ?? "Event type",
text: eventType.schedulingUrl,
})
})