Textit integration
TextIt is a platform that enables users to build scalable, interactive chatbots…
- Provider
- textit
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 31 available
Quick start
Call Textit from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Textit'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(
"TEXTIT_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 Textit 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
31 actions exposed via the
Textit integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
TEXTIT_CREATE_CAMPAIGN -
TEXTIT_CREATE_GROUP -
TEXTIT_CREATE_LABEL -
TEXTIT_DELETE_CONTACT -
TEXTIT_DELETE_GROUP -
TEXTIT_DELETE_LABEL -
TEXTIT_GET_CAMPAIGN -
TEXTIT_GET_WORKSPACE -
TEXTIT_LIST_ARCHIVES -
TEXTIT_LIST_BROADCASTS -
TEXTIT_LIST_CAMPAIGN_EVENTS2 -
TEXTIT_LIST_CAMPAIGNS
Show all 31 actions
-
TEXTIT_LIST_CHANNELS -
TEXTIT_LIST_CLASSIFIERS -
TEXTIT_LIST_CONTACTS -
TEXTIT_LIST_FIELDS -
TEXTIT_LIST_FLOWS -
TEXTIT_LIST_FLOW_STARTS -
TEXTIT_LIST_GLOBALS -
TEXTIT_LIST_GROUPS2 -
TEXTIT_LIST_LABELS2 -
TEXTIT_LIST_MESSAGES -
TEXTIT_LIST_RESTHOOK_EVENTS -
TEXTIT_LIST_RESTHOOKS -
TEXTIT_LIST_RESTHOOK_SUBSCRIBERS -
TEXTIT_LIST_RUNS -
TEXTIT_LIST_TICKETS -
TEXTIT_LIST_TOPICS2 -
TEXTIT_LIST_USERS -
TEXTIT_SEND_BROADCAST -
TEXTIT_UPDATE_CONTACT
Build with Textit
Open OverSkill, describe what you want to build, and reference Textit in your prompt — the AI will wire up the integration automatically.