Callingly integration
Callingly is a lead response management software that automates immediate call…
- Provider
- callingly
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 29 available
Quick start
Call Callingly from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Callingly'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(
"CALLINGLY_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 Callingly 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
29 actions exposed via the
Callingly integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CALLINGLY_ACTIVATE_DEACTIVATE_CLIENT -
CALLINGLY_CREATE_AGENT -
CALLINGLY_CREATE_CALL -
CALLINGLY_CREATE_CLIENT -
CALLINGLY_CREATE_TEAM -
CALLINGLY_CREATE_WEBHOOK -
CALLINGLY_DELETE_AGENT -
CALLINGLY_DELETE_CLIENT -
CALLINGLY_DELETE_LEAD -
CALLINGLY_DELETE_WEBHOOK -
CALLINGLY_GET_AGENT_SCHEDULE -
CALLINGLY_GET_CALL
Show all 29 actions
-
CALLINGLY_GET_LEAD -
CALLINGLY_GET_TEAM -
CALLINGLY_GET_WEBHOOK -
CALLINGLY_LIST_CALLS -
CALLINGLY_LIST_CLIENTS -
CALLINGLY_LIST_LEADS -
CALLINGLY_LIST_TEAMS -
CALLINGLY_LIST_TEAM_USERS -
CALLINGLY_LIST_USERS -
CALLINGLY_LIST_WEBHOOKS -
CALLINGLY_REMOVE_TEAM_AGENT -
CALLINGLY_UPDATE_AGENT -
CALLINGLY_UPDATE_LEAD -
CALLINGLY_UPDATE_SCHEDULE -
CALLINGLY_UPDATE_TEAM_AGENT_SETTINGS -
CALLINGLY_UPDATE_TEAM_USERS -
CALLINGLY_UPDATE_WEBHOOK
Build with Callingly
Open OverSkill, describe what you want to build, and reference Callingly in your prompt — the AI will wire up the integration automatically.