Telnyx integration
Telnyx is a communications platform offering voice, messaging, and data…
- Provider
- telnyx
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 30 available
Quick start
Call Telnyx from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Telnyx'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(
"TELNYX_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 Telnyx 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
30 actions exposed via the
Telnyx integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
TELNYX_CREATE_NETWORK -
TELNYX_CREATE_NOTIFICATION_CHANNEL -
TELNYX_CREATE_NOTIFICATION_PROFILE -
TELNYX_CREATE_NOTIFICATION_SETTING -
TELNYX_DELETE_NETWORK -
TELNYX_DELETE_NOTIFICATION_CHANNEL -
TELNYX_DELETE_NOTIFICATION_PROFILE -
TELNYX_DELETE_NOTIFICATION_SETTING -
TELNYX_GET_BLACK_BOX_TEST_RESULTS -
TELNYX_GET_USER_BALANCE -
TELNYX_LIST_AUDIT_LOGS -
TELNYX_LIST_CONNECTIONS
Show all 30 actions
-
TELNYX_LIST_DYNAMIC_EMERGENCY_ENDPOINTS -
TELNYX_LIST_GLOBAL_IP_HEALTH_CHECK_TYPES -
TELNYX_LIST_MESSAGING_PROFILES -
TELNYX_LIST_MESSAGING_URL_DOMAINS -
TELNYX_LIST_MOBILE_NETWORK_OPERATORS -
TELNYX_LIST_NETWORK_INTERFACES -
TELNYX_LIST_NETWORKS -
TELNYX_LIST_NOTIFICATION_CHANNELS -
TELNYX_LIST_NOTIFICATION_EVENT_CONDITIONS -
TELNYX_LIST_NOTIFICATION_EVENTS -
TELNYX_LIST_NOTIFICATION_PROFILES -
TELNYX_LIST_PHONE_NUMBERS -
TELNYX_LIST_SSO_AUTHENTICATION_PROVIDERS -
TELNYX_RETRIEVE_NETWORK -
TELNYX_RETRIEVE_NOTIFICATION_CHANNEL -
TELNYX_RETRIEVE_NOTIFICATION_PROFILE -
TELNYX_RETRIEVE_NOTIFICATION_SETTING -
TELNYX_UPDATE_NETWORK
Build with Telnyx
Open OverSkill, describe what you want to build, and reference Telnyx in your prompt — the AI will wire up the integration automatically.