CalendarHero integration
CalendarHero is a versatile scheduling tool designed to streamline and simplify…
- 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.
-
CALENDARHERO_ADD_CALENDAR_CONNECTION -
CALENDARHERO_CREATE_CONTACT -
CALENDARHERO_CREATE_MEETING_REQUEST_V2 -
CALENDARHERO_CREATE_WEBHOOK -
CALENDARHERO_DELETE_CONTACT -
CALENDARHERO_DELETE_MEETING_TASK -
CALENDARHERO_DELETE_MEETING_TYPE -
CALENDARHERO_DELETE_USER_DIRECTORY -
CALENDARHERO_DELETE_WEBHOOK -
CALENDARHERO_FETCH_CONTACT -
CALENDARHERO_FETCH_MEETING_DETAILS -
CALENDARHERO_FETCH_USER_PROFILE
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.