Developer docs

Clickmeeting integration

ClickMeeting is a cloud-based online meeting and webinar platform that enables…

Updated July 2026 39 actions available

Provider
clickmeeting
Category
Other
Setup
User-supplied API key
Actions
39 available

Quick start

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

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

Show all 39 actions
  • CLICKMEETING_GET_CONFERENCE_DETAILS
  • CLICKMEETING_GET_CONFERENCE_FILES
  • CLICKMEETING_GET_CONFERENCES
  • CLICKMEETING_GET_CONFERENCE_SESSIONS
  • CLICKMEETING_GET_CONFERENCE_SKINS
  • CLICKMEETING_GET_FILE_DETAILS
  • CLICKMEETING_GET_FILE_LIBRARY
  • CLICKMEETING_GET_PHONE_GATEWAYS
  • CLICKMEETING_GET_PING
  • CLICKMEETING_GET_REGISTRATIONS
  • CLICKMEETING_GET_SESSION_ATTENDEES
  • CLICKMEETING_GET_SESSION_DETAILS
  • CLICKMEETING_GET_SESSION_POLL_DETAILS
  • CLICKMEETING_GET_SESSION_QA_HISTORY
  • CLICKMEETING_GET_SESSION_RECORDINGS
  • CLICKMEETING_GET_SESSION_REGISTRATIONS
  • CLICKMEETING_GET_SESSION_SURVEY_DETAILS
  • CLICKMEETING_GET_SESSION_SURVEYS
  • CLICKMEETING_GET_TIME_ZONE_LIST
  • CLICKMEETING_GET_TIME_ZONE_LIST_BY_COUNTRY
  • CLICKMEETING_GET_TOKEN_BY_EMAIL
  • CLICKMEETING_LIST_ACCESS_TOKENS
  • CLICKMEETING_LIST_REGISTRATIONS_BY_STATUS
  • CLICKMEETING_REGISTER_PARTICIPANT
  • CLICKMEETING_SEND_INVITATION
  • CLICKMEETING_UPDATE_CONFERENCE
  • CLICKMEETING_UPLOAD_FILE

Build with Clickmeeting

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