Convolo AI integration
Convolo.ai is an AI-powered communications platform designed to enhance sales…
- Provider
- convolo_ai
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 7 available
Quick start
Call Convolo AI from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Convolo AI'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(
"CONVOLO_AI_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 Convolo AI 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
7 actions exposed via the
Convolo AI integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CONVOLO_AI_CREATE_CHARACTER -
CONVOLO_AI_EVALUATE_CHARACTER -
CONVOLO_AI_GENERATE_STARTER_CONVERSATION -
CONVOLO_AI_GET_CHARACTER_RESPONSE -
CONVOLO_AI_LIST_VOICES -
CONVOLO_AI_SET_CORE_AI_SETTINGS -
CONVOLO_AI_UPLOAD_KNOWLEDGE_BANK
Build with Convolo AI
Open OverSkill, describe what you want to build, and reference Convolo AI in your prompt — the AI will wire up the integration automatically.