calendly.getUser accepts userId, the final segment of a Calendly user URI, and returns the full user profile.
automations/get-calendly-user-by-id.automation.ts
users:read and access to the requested user.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get one Calendly user by UUID.
calendly.getUser accepts userId, the final segment of a Calendly user URI, and returns the full user profile.
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("Get a Calendly user", () => {
onDashboardRun({ title: "Get a Calendly user" })
const user = calendly.getUser({ userId: "user-id" })
sendEmail({
subject: user.name,
text: `${user.email}\n${user.schedulingUrl}`,
})
})
users:read and access to the requested user.