calendly.getInviteeNoShow accepts the final UUID segment of a no-show URI.
automations/get-calendly-no-show.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 invitee no-show record.
calendly.getInviteeNoShow accepts the final UUID segment of a no-show URI.
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Get Calendly no-show", () => {
onDashboardRun({ title: "Get Calendly no-show" })
const noShow = calendly.getInviteeNoShow({ noShowId: "no-show-id" })
sendEmail({
subject: "Calendly no-show",
text: `${noShow.invitee}\n${noShow.createdAt}`,
})
})