calendly.listEventTypeHosts accepts the complete eventType URI and returns paginated membership records with event type and member details.
automations/list-calendly-hosts.automation.ts
count and pageToken for pagination.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List the Calendly hosts assigned to an event type.
calendly.listEventTypeHosts accepts the complete eventType URI and returns paginated membership records with event type and member details.
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("List Calendly event hosts", () => {
onDashboardRun({ title: "List Calendly hosts" })
const page = calendly.listEventTypeHosts({
eventType: "https://api.calendly.com/event_types/event-type-id",
})
sendEmail({ subject: "Event hosts", text: JSON.stringify(page.items) })
})
count and pageToken for pagination.