calendly.listRoutingForms requires Calendly Teams or above and a complete organization URI.
automations/list-calendly-routing-forms.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 Calendly routing forms for an organization.
calendly.listRoutingForms requires Calendly Teams or above and a complete organization URI.
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("List Calendly routing forms", () => {
onDashboardRun({ title: "List routing forms" })
const page = calendly.listRoutingForms({
organization: "https://api.calendly.com/organizations/organization-id",
sort: "created_at:desc",
})
sendEmail({ subject: "Routing forms", text: JSON.stringify(page.items) })
})
count and pageToken for pagination.