Gong integration
Gong is a platform for video meetings, call recording, and team collaboration.
- Provider
- gong
- Category
- Analytics
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 58 available
Quick start
Call Gong from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Gong'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(
"GONG_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 Gong. End-users click Connect on the integration card in your app, complete the OAuth flow with Gong, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: BASIC, OAUTH2.
Available actions
58 actions exposed via the
Gong integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
GONG_ADD_CALL_MEDIA_V2_CALLS_ID_MEDIA -
GONG_ADD_NEW_CALL_V2_CALLS -
GONG_AGGREGATE_ACTIVITY_BY_PERIOD_VIA_API -
GONG_AGGREGATE_USER_ACTIVITY_STATISTICS -
GONG_ASSIGN_PROSPECTS_TO_FLOW -
GONG_CREATE_ACTIVITY_SCORECARDS_REPORT -
GONG_CREATE_A_NEW_GONG_MEETING_V2_MEETINGS -
GONG_CREATE_PERMISSION_PROFILE_V2_PERMISSION_PROFILE -
GONG_DATA_PRIVACY_FOR_PHONE_NUMBER -
GONG_DELETE_A_GENERIC_CRM_INTEGRATION_V2_CRM_INTEGRATIONS -
GONG_DELETE_MEETING -
GONG_DELETE_USERS_FROM_CALL_ACCESS_LIST
Show all 58 actions
-
GONG_ERASE_DATA_FOR_EMAIL_ADDRESS -
GONG_ERASE_DATA_FOR_PHONE_NUMBER -
GONG_FETCH_ALL_PERMISSION_PROFILES -
GONG_GET_CALL_BY_ID -
GONG_GET_CALL_TRANSCRIPT -
GONG_GET_CRM_INTEGRATION_DETAILS -
GONG_GET_CRM_OBJECTS_V2_CRM_ENTITIES -
GONG_GET_FLOW_PROSPECTS -
GONG_GET_INTERACTION_STATISTICS -
GONG_GET_PERMISSION_PROFILE -
GONG_GET_REQUEST_STATUS_V2_CRM_REQUEST_STATUS -
GONG_GET_USER_BY_ID -
GONG_GET_USER_SETTINGS_HISTORY -
GONG_LIST_ALL_COACHING_METRICS_V2_COACHING -
GONG_LIST_ALL_COMPANY_WORKSPACES_V2_WORKSPACES -
GONG_LIST_ALL_USERS_V2_USERS -
GONG_LIST_CALL_OUTCOMES -
GONG_LIST_FLOW_FOLDERS -
GONG_LIST_FOLDER_CALLS -
GONG_LIST_GONG_ENGAGE_FLOWS_V2_FLOWS -
GONG_LIST_SCHEMA_FIELDS_V2_CRM_ENTITY_SCHEMA -
GONG_LIST_SCORECARDS -
GONG_LIST_TASKS -
GONG_LIST_USERS_BY_FILTER_V2_USERS_EXTENSIVE -
GONG_MANAGE_USER_CALL_ACCESS -
GONG_POST_A_DIGITAL_INTERACTION_V2_DIGITAL_INTERACTION -
GONG_POST_DAY_BY_DAY_ACTIVITY_STATS -
GONG_REGISTER_CRM_INTEGRATION -
GONG_REPORT_CONTENT_SHARE_EVENT -
GONG_REPORT_CONTENT_VIEW_EVENT -
GONG_REPORT_CUSTOM_ENGAGEMENT_EVENT -
GONG_RETRIEVE_CALL_DATA_BY_DATE_RANGE_V2_CALLS -
GONG_RETRIEVE_DATA_PRIVACY_INFO_FOR_EMAIL_ADDRESS -
GONG_RETRIEVE_FILTERED_CALL_DETAILS -
GONG_RETRIEVE_LIBRARY_FOLDERS_V2_LIBRARY_FOLDERS -
GONG_RETRIEVE_LOGS_DATA_BY_TYPE_AND_TIME_RANGE_V2_LOGS -
GONG_RETRIEVE_MANUAL_CRM_CALL_ASSOCIATIONS -
GONG_RETRIEVE_TRACKER_DETAILS_V2_SETTINGS_TRACKERS -
GONG_RETRIEVE_TRANSCRIPTS_OF_CALLS_V2_CALLS_TRANSCRIPT -
GONG_RETRIEVE_USERS_FROM_PERMISSION_PROFILE -
GONG_SET_USER_CALL_ACCESS -
GONG_UNASSIGN_FLOWS_BY_CRM_ID -
GONG_UPDATE_A_GONG_MEETING_V2_MEETINGS_MEETING_ID -
GONG_UPDATE_PERMISSION_PROFILE_V2_PERMISSION_PROFILE -
GONG_UPLOAD_CRM_OBJECTS_V2_CRM_ENTITIES -
GONG_VALIDATE_MEETING_INTEGRATION
Build with Gong
Open OverSkill, describe what you want to build, and reference Gong in your prompt — the AI will wire up the integration automatically.