Developer docs

Calendly integration

Calendly is an appointment scheduling tool that automates meeting invitations,…

Updated June 2026 55 actions available

Provider
calendly
Category
Other
Setup
One-click OAuth (we host the OAuth app)
Actions
55 available

Quick start

Call Calendly from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Calendly's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "CALENDLY_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

OverSkill hosts the OAuth application for Calendly. End-users click Connect on the integration card in your app, complete the OAuth flow with Calendly, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.

Supported auth schemes: OAUTH2.

Available actions

55 actions exposed via the Calendly integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 55 actions
  • CALENDLY_DELETE_WEBHOOK_SUBSCRIPTION
  • CALENDLY_GET_CURRENT_USER
  • CALENDLY_GET_EVENT
  • CALENDLY_GET_EVENT_INVITEE
  • CALENDLY_GET_EVENT_TYPE
  • CALENDLY_GET_EVENT_TYPE_AVAILABILITY
  • CALENDLY_GET_GROUP
  • CALENDLY_GET_GROUP_RELATIONSHIP
  • CALENDLY_GET_INVITEE_NO_SHOW
  • CALENDLY_GET_ORGANIZATION
  • CALENDLY_GET_ORGANIZATION_INVITATION
  • CALENDLY_GET_ORGANIZATION_MEMBERSHIP
  • CALENDLY_GET_ROUTING_FORM
  • CALENDLY_GET_ROUTING_FORM_SUBMISSION
  • CALENDLY_GET_SAMPLE_WEBHOOK_DATA
  • CALENDLY_GET_USER
  • CALENDLY_GET_USER_AVAILABILITY_SCHEDULE
  • CALENDLY_GET_WEBHOOK_SUBSCRIPTION
  • CALENDLY_INVITEE_NO_SHOW
  • CALENDLY_LIST_ACTIVITY_LOG_ENTRIES
  • CALENDLY_LIST_EVENT_INVITEES
  • CALENDLY_LIST_EVENTS
  • CALENDLY_LIST_EVENT_TYPE_AVAILABLE_TIMES
  • CALENDLY_LIST_EVENT_TYPE_MEMBERSHIPS
  • CALENDLY_LIST_EVENT_TYPES
  • CALENDLY_LIST_GROUP_RELATIONSHIPS
  • CALENDLY_LIST_GROUPS
  • CALENDLY_LIST_ORGANIZATION_INVITATIONS
  • CALENDLY_LIST_ORGANIZATION_MEMBERSHIPS
  • CALENDLY_LIST_OUTGOING_COMMUNICATIONS
  • CALENDLY_LIST_ROUTING_FORMS
  • CALENDLY_LIST_SCHEDULED_EVENTS
  • CALENDLY_LIST_USER_AVAILABILITY_SCHEDULES
  • CALENDLY_LIST_USER_BUSY_TIMES
  • CALENDLY_LIST_USER_LOCATIONS
  • CALENDLY_LIST_USER_S_EVENT_TYPES
  • CALENDLY_LIST_WEBHOOK_SUBSCRIPTIONS
  • CALENDLY_ORGANIZATION_INVITATION
  • CALENDLY_POST_INVITEE
  • CALENDLY_REMOVE_USER_FROM_ORGANIZATION
  • CALENDLY_REVOKE_USER_S_ORGANIZATION_INVITATION
  • CALENDLY_UPDATE_EVENT_TYPE
  • CALENDLY_UPDATE_EVENT_TYPE_AVAILABILITY

Build with Calendly

Open OverSkill, describe what you want to build, and reference Calendly in your prompt — the AI will wire up the integration automatically.