Teltel integration
TelTel is a telecom operator and software provider offering tools for automated…
- Provider
- teltel
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 26 available
Quick start
Call Teltel from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Teltel'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(
"TELTEL_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 Teltel 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
Teltel integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
TELTEL_CREATE_AUTODIALER_CUSTOM_STATUS -
TELTEL_CREATE_CALL -
TELTEL_CREATE_USER_STATUS -
TELTEL_DELETE_AUTODIALER_CUSTOM_STATUS -
TELTEL_DELETE_USER_STATUS -
TELTEL_GET_ACCOUNT_BALANCE -
TELTEL_GET_CALL_LIST -
TELTEL_GET_COUNTRY -
TELTEL_GET_SMS_LIST -
TELTEL_GET_USER_CID_GROUPS -
TELTEL_GET_USERS_LIST -
TELTEL_LIST_AUTODIALER_ACTIONS
Show all 26 actions
-
TELTEL_LIST_AUTODIALER_CONTACTS -
TELTEL_LIST_AUTODIALER_CUSTOM_STATUSES -
TELTEL_LIST_AUTO_DIALERS -
TELTEL_LIST_AVAILABLE_COUNTRIES -
TELTEL_LIST_COUNTRY_PRICE_GROUPS -
TELTEL_LIST_DEVICES -
TELTEL_LIST_MY_NUMBERS -
TELTEL_LIST_ORDERS -
TELTEL_LIST_USER_STATUSES -
TELTEL_LOOKUP_PHONE_NUMBER -
TELTEL_RECEIVE_INBOUND_SMS -
TELTEL_SET_USER_STATUS -
TELTEL_UPDATE_AUTODIALER_CUSTOM_STATUS -
TELTEL_UPDATE_USER_STATUS
Build with Teltel
Open OverSkill, describe what you want to build, and reference Teltel in your prompt — the AI will wire up the integration automatically.