Developer docs

CalendarHero integration

CalendarHero is a versatile scheduling tool designed to streamline and simplify…

Updated June 2026 38 actions available

Provider
calendarhero
Category
Other
Setup
User-supplied API key
Actions
38 available

Quick start

Call CalendarHero from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to CalendarHero'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(
  "CALENDARHERO_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

End-users supply their own CalendarHero API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

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

Show all 38 actions
  • CALENDARHERO_GET_ASSISTANT_MESSAGE
  • CALENDARHERO_GET_CONTACT_COUNT
  • CALENDARHERO_GET_MEETING_CATEGORIES
  • CALENDARHERO_GET_MEETING_TASKS
  • CALENDARHERO_GET_SEARCH_RESULT
  • CALENDARHERO_GET_USER_DIRECTORY
  • CALENDARHERO_GET_USER_ORGANIZATION
  • CALENDARHERO_GET_USER_SAVINGS
  • CALENDARHERO_GET_WEBHOOK
  • CALENDARHERO_GET_WEBHOOK_SAMPLE
  • CALENDARHERO_LIST_MEETING_TEMPLATES
  • CALENDARHERO_LIST_MEETING_TYPES
  • CALENDARHERO_LIST_USER_CALENDARS
  • CALENDARHERO_LIST_USER_DIRECTORIES
  • CALENDARHERO_SEARCH_CONTACT
  • CALENDARHERO_SEARCH_INTEGRATIONS
  • CALENDARHERO_SEND_ASSISTANT_MESSAGE
  • CALENDARHERO_SEND_REMINDER
  • CALENDARHERO_UPDATE_CONTACT
  • CALENDARHERO_UPDATE_MEETING_TYPES
  • CALENDARHERO_UPDATE_RESTRICTED_APPS
  • CALENDARHERO_UPDATE_USER
  • CALENDARHERO_UPDATE_USER_ADDRESS
  • CALENDARHERO_UPDATE_USER_DIRECTORY
  • CALENDARHERO_UPDATE_USER_INFO
  • CALENDARHERO_UPDATE_WORK_LOCATION

Build with CalendarHero

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