Deadline Funnel integration
Deadline Funnel provides tools to create authentic, personalized deadlines for…
- Provider
- deadline_funnel
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 6 available
Quick start
Call Deadline Funnel from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Deadline Funnel'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(
"DEADLINE_FUNNEL_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 Deadline Funnel 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
6 actions exposed via the
Deadline Funnel integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DEADLINE_FUNNEL_EMAIL_LINK_REDIRECT -
DEADLINE_FUNNEL_GENERATE_SALES_TRACKING_WEBHOOK_URL -
DEADLINE_FUNNEL_GET_ACCOUNT_ID -
DEADLINE_FUNNEL_LIST_CAMPAIGNS -
DEADLINE_FUNNEL_START_DEADLINE_CUSTOM_WEBHOOK -
DEADLINE_FUNNEL_TRACK_SALE_WEBHOOK
Build with Deadline Funnel
Open OverSkill, describe what you want to build, and reference Deadline Funnel in your prompt — the AI will wire up the integration automatically.