Stormboard integration
An online sticky note whiteboard making meetings, brainstorms, and creative…
- Provider
- stormboard
- Category
- Productivity
- Setup
- User-supplied API key
- Actions
- 41 available
Quick start
Call Stormboard from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Stormboard'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(
"STORMBOARD_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 Stormboard 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
41 actions exposed via the
Stormboard integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
STORMBOARD_ACCEPT_A_STORM_INVITE -
STORMBOARD_ADD_A_FAVORITE_STAR -
STORMBOARD_CHECK_AUTHENTICATION -
STORMBOARD_CLOSE_A_STORM -
STORMBOARD_CREATE_A_LINE_CONNECTOR -
STORMBOARD_CREATE_A_NEW_CHAT_MESSAGES -
STORMBOARD_CREATE_A_NEW_STORM -
STORMBOARD_CREATE_A_NEW_TAG -
STORMBOARD_CREATE_A_NEW_USER -
STORMBOARD_CREATE_AN_IDEA -
STORMBOARD_CREATE_TAG_DATA_FOR_AN_IDEA -
STORMBOARD_DECLINE_A_STORM_INVITE
Show all 41 actions
-
STORMBOARD_DELETE_A_CONNECTOR_BETWEEN_IDEAS -
STORMBOARD_DELETE_A_SPECIFIC_CONNECTOR -
STORMBOARD_DETAILS -
STORMBOARD_DUPLICATE_A_STORM -
STORMBOARD_GET_A_LIST_OF_CONNECTORS_IN_A_STORM -
STORMBOARD_GET_A_LIST_OF_IDEAS -
STORMBOARD_GET_A_LIST_OF_PARTICIPANTS -
STORMBOARD_GET_A_LIST_OF_STORMS_INVITES -
STORMBOARD_GET_A_LIST_OF_TAGS_IN_THE_STORM -
STORMBOARD_GET_A_LIST_OF_YOUR_STORMS -
STORMBOARD_GET_AUTHENTICATION_INFO -
STORMBOARD_GET_CHAT_MESSAGES -
STORMBOARD_GET_IDEA_DATA -
STORMBOARD_GET_INFO_ABOUT_YOUR_USER -
STORMBOARD_GET_MY_STORM_ACCESS -
STORMBOARD_GET_STORM_TEMPLATE -
STORMBOARD_GET_TAG_DATA_FOR_AN_IDEA -
STORMBOARD_GET_UNREAD_CHAT_MESSAGES -
STORMBOARD_INVITE_PARTICIPANTS -
STORMBOARD_JOIN_A_STORM -
STORMBOARD_MARK_CHAT_MESSAGES_AS_READ -
STORMBOARD_REMOVE_A_FAVORITE_STAR -
STORMBOARD_RE_OPEN_A_STORM -
STORMBOARD_UPDATE_A_LINE_CONNECTOR -
STORMBOARD_UPDATE_NOTIFICATIONS -
STORMBOARD_UPDATE_SECTION_IN_STORM -
STORMBOARD_UPDATE_STORM_LEGEND -
STORMBOARD_UPDATE_YOUR_PROFILE -
STORMBOARD_VERIFY_YOUR_ACCOUNT
Build with Stormboard
Open OverSkill, describe what you want to build, and reference Stormboard in your prompt — the AI will wire up the integration automatically.