Callpage integration
CallPage is a lead capture tool that enables businesses to connect with website…
- Provider
- callpage
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 26 available
Quick start
Call Callpage from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Callpage'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(
"CALLPAGE_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 Callpage 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
26 actions exposed via the
Callpage integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CALLPAGE_ADD_USERS_TO_WIDGET -
CALLPAGE_CREATE_SMS_MESSAGE -
CALLPAGE_CREATE_USER -
CALLPAGE_DELETE_MANAGER -
CALLPAGE_DELETE_USER -
CALLPAGE_GET_ALL_MANAGERS -
CALLPAGE_GET_ALL_SMS_MESSAGES -
CALLPAGE_GET_ALL_USERS -
CALLPAGE_GET_ALL_VOICE_MESSAGES -
CALLPAGE_GET_ALL_WIDGETS -
CALLPAGE_GET_API_ROOT -
CALLPAGE_GET_CALLS_HISTORY
Show all 26 actions
-
CALLPAGE_GET_MANAGER -
CALLPAGE_GET_MANAGER_STATUS_STATISTICS -
CALLPAGE_GET_WIDGET -
CALLPAGE_POST_CREATE_MANAGER -
CALLPAGE_POST_CREATE_VOICE_MESSAGE -
CALLPAGE_POST_CREATE_WIDGET -
CALLPAGE_POST_DELETE_WIDGET -
CALLPAGE_POST_RESET_SMS -
CALLPAGE_POST_RESET_VOICE_MESSAGE -
CALLPAGE_POST_UPDATE_MANAGER -
CALLPAGE_POST_UPDATE_SMS -
CALLPAGE_POST_UPDATE_USER -
CALLPAGE_POST_UPDATE_WIDGET -
CALLPAGE_POST_WIDGET_CALL_OR_SCHEDULE
Build with Callpage
Open OverSkill, describe what you want to build, and reference Callpage in your prompt — the AI will wire up the integration automatically.