calendly.listUserMeetingLocations returns the meeting location types a user can assign to event types.
automations/list-calendly-meeting-locations.automation.ts
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List the meeting location types connected to a Calendly user.
calendly.listUserMeetingLocations returns the meeting location types a user can assign to event types.
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("List Calendly meeting locations", () => {
onDashboardRun({ title: "List meeting locations" })
const locations = calendly.listUserMeetingLocations({
user: "https://api.calendly.com/users/user-id",
})
sendEmail({
subject: "Connected locations",
text: JSON.stringify(locations.items),
})
})