Botstar integration
BotStar is a comprehensive chatbot platform that enables businesses to design,…
- Provider
- botstar
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 31 available
Quick start
Call Botstar from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Botstar'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(
"BOTSTAR_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 Botstar 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
Botstar integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
BOTSTAR_CREATE_BOT -
BOTSTAR_CREATE_BOT_ATTRIBUTE -
BOTSTAR_CREATE_CMS_ENTITY -
BOTSTAR_CREATE_ENTITY_FIELDS -
BOTSTAR_CREATE_ENTITY_ITEM -
BOTSTAR_CREATE_USER_ATTRIBUTES -
BOTSTAR_DELETE_BOT_ATTRIBUTE -
BOTSTAR_DELETE_CMS_ENTITY -
BOTSTAR_DELETE_ENTITY_FIELDS -
BOTSTAR_DELETE_ENTITY_ITEM -
BOTSTAR_GET_BOT -
BOTSTAR_GET_BOT_APP_ID
Show all 31 actions
-
BOTSTAR_GET_CMS_ENTITY -
BOTSTAR_GET_ENTITY_ITEM -
BOTSTAR_LIST_BOT_ATTRIBUTES -
BOTSTAR_LIST_BOTS -
BOTSTAR_LIST_CMS_ENTITIES -
BOTSTAR_LIST_ENTITY_ITEMS -
BOTSTAR_LIVECHAT_BOOT -
BOTSTAR_LIVECHAT_CLOSE -
BOTSTAR_LIVECHAT_ON_CLOSE -
BOTSTAR_LIVECHAT_ON_OPEN -
BOTSTAR_LIVECHAT_OPEN -
BOTSTAR_LIVECHAT_UPDATE -
BOTSTAR_PUBLISH_BOT -
BOTSTAR_UPDATE_BOT_ATTRIBUTE -
BOTSTAR_UPDATE_CMS_ENTITY -
BOTSTAR_UPDATE_ENTITY_FIELDS -
BOTSTAR_UPDATE_ENTITY_ITEM -
BOTSTAR_WEBVIEW_GET_PARAMETER -
BOTSTAR_WEBVIEW_SEND_RESPONSE
Build with Botstar
Open OverSkill, describe what you want to build, and reference Botstar in your prompt — the AI will wire up the integration automatically.