calendly.listOrganizationMemberships returns paginated membership records.
automations/list-calendly-admins.automation.ts
count defaults to 20 and pageToken continues from pageInfo.nextPageToken. Roles are owner, admin, or user.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List Calendly organization members by organization, user, email, or role.
calendly.listOrganizationMemberships returns paginated membership records.
import { automation, onDashboardRun, sendEmail } from "automate.ax"
import { calendly } from "automate.ax/calendly"
export default automation("List Calendly admins", () => {
onDashboardRun({ title: "List Calendly admins" })
const page = calendly.listOrganizationMemberships({
organization: "https://api.calendly.com/organizations/organization-id",
role: "admin",
})
sendEmail({ subject: "Calendly admins", text: JSON.stringify(page.items) })
})
count defaults to 20 and pageToken continues from pageInfo.nextPageToken. Roles are owner, admin, or user.