Kommo integration
Kommo CRM is a platform for managing customer relationships, sales pipelines,…
- Provider
- kommo
- Category
- Crm
- Setup
- Bring-your-own OAuth credentials
- Actions
- 53 available
Quick start
Call Kommo from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Kommo'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(
"KOMMO_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
This integration uses OAuth, but the platform credentials for Kommo haven't been registered yet. Reach out to the OverSkill team so we can register the OAuth client_id / client_secret — until then the "Connect" button won't work.
Available actions
53 actions exposed via the
Kommo integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
KOMMO_ADD_AI_SOURCE_FILE -
KOMMO_CREATE_COMPANY -
KOMMO_CREATE_CONTACT -
KOMMO_CREATE_LEAD -
KOMMO_CREATE_TASK -
KOMMO_DELETE_FILES -
KOMMO_GET_ACCOUNT -
KOMMO_GET_COMPANY -
KOMMO_GET_CONTACT -
KOMMO_GET_CUSTOM_FIELD -
KOMMO_GET_EVENT -
KOMMO_GET_FIELD_GROUP
Show all 53 actions
-
KOMMO_GET_FILE_LINKS -
KOMMO_GET_INCOMING_LEADS_SUMMARY -
KOMMO_GET_LEAD -
KOMMO_GET_LOSS_REASON -
KOMMO_GET_PIPELINE -
KOMMO_GET_PIPELINE_STATUS -
KOMMO_GET_TASK -
KOMMO_GET_USER -
KOMMO_GET_WIDGET -
KOMMO_IMPORT_PRODUCTS_TO_AI -
KOMMO_LIST_CATALOGS -
KOMMO_LIST_COMPANIES -
KOMMO_LIST_CONTACTS -
KOMMO_LIST_CONVERSATIONS -
KOMMO_LIST_CUSTOM_FIELDS -
KOMMO_LIST_ENTITY_FILES -
KOMMO_LIST_ENTITY_LINKS -
KOMMO_LIST_ENTITY_NOTES -
KOMMO_LIST_ENTITY_TAGS -
KOMMO_LIST_EVENTS -
KOMMO_LIST_EVENT_TYPES -
KOMMO_LIST_FIELD_GROUPS -
KOMMO_LIST_FILES -
KOMMO_LIST_INCOMING_LEADS -
KOMMO_LIST_LEADS -
KOMMO_LIST_LEADS_PIPELINES -
KOMMO_LIST_LOSS_REASONS -
KOMMO_LIST_NOTES_BY_ENTITY -
KOMMO_LIST_PIPELINE_STAGES -
KOMMO_LIST_ROLES -
KOMMO_LIST_SOURCES -
KOMMO_LIST_TASKS -
KOMMO_LIST_TEMPLATES -
KOMMO_LIST_USERS -
KOMMO_LIST_WEBHOOKS -
KOMMO_LIST_WEBSITE_BUTTONS -
KOMMO_LIST_WIDGETS -
KOMMO_UPDATE_COMPANY -
KOMMO_UPDATE_CONTACT -
KOMMO_UPDATE_LEAD -
KOMMO_UPDATE_TASK
Build with Kommo
Open OverSkill, describe what you want to build, and reference Kommo in your prompt — the AI will wire up the integration automatically.