Dialmycalls integration
DialMyCalls provides a mass notification system enabling users to send voice…
- Provider
- dialmycalls
- Category
- Communication
- Setup
- User-supplied API key
- Actions
- 25 available
Quick start
Call Dialmycalls from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Dialmycalls'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(
"DIALMYCALLS_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 Dialmycalls 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
25 actions exposed via the
Dialmycalls integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DIALMYCALLS_ADD_ACCESS_ACCOUNT -
DIALMYCALLS_ADD_CONTACT -
DIALMYCALLS_ADD_GROUP -
DIALMYCALLS_DELETE_ACCESS_ACCOUNT -
DIALMYCALLS_DELETE_CALLER_ID -
DIALMYCALLS_DELETE_CONTACT -
DIALMYCALLS_DELETE_GROUP -
DIALMYCALLS_DELETE_RECORDING -
DIALMYCALLS_GET_ACCESS_ACCOUNT -
DIALMYCALLS_GET_ACCOUNT -
DIALMYCALLS_GET_CALLER_ID -
DIALMYCALLS_GET_CONTACT
Show all 25 actions
-
DIALMYCALLS_GET_GROUP -
DIALMYCALLS_GET_RECORDING -
DIALMYCALLS_LIST_ACCESS_ACCOUNTS -
DIALMYCALLS_LIST_CALLER_I_DS -
DIALMYCALLS_LIST_CALLS -
DIALMYCALLS_LIST_CONTACTS -
DIALMYCALLS_LIST_DO_NOT_CONTACTS -
DIALMYCALLS_LIST_GROUPS -
DIALMYCALLS_LIST_RECORDINGS -
DIALMYCALLS_LIST_TEXTS -
DIALMYCALLS_LIST_VANITY_NUMBERS -
DIALMYCALLS_UPDATE_ACCESS_ACCOUNT -
DIALMYCALLS_UPDATE_CALLER_ID
Build with Dialmycalls
Open OverSkill, describe what you want to build, and reference Dialmycalls in your prompt — the AI will wire up the integration automatically.