calendly.onEventTypeUpdated returns the event type after Calendly applies the change.
automations/calendly-event-type-updated.automation.ts
payload.uri as the stable event type identifier.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run an automation when Calendly updates an event type.
calendly.onEventTypeUpdated returns the event type after Calendly applies the change.
import { automation, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Track Calendly event type changes", () => {
const event = calendly.onEventTypeUpdated({
organizationUri: "https://api.calendly.com/organizations/organization-id",
scope: "organization",
})
sendEmail({
subject: `Updated: ${event.payload.name}`,
text: JSON.stringify(event.payload),
})
})
payload.uri as the stable event type identifier.