Kanbanize integration
Kanbanize is designed to help advanced product teams apply the principles of…
- Provider
- kanbanize
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 24 available
Quick start
Call Kanbanize from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Kanbanize'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(
"KANBANIZE_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 Kanbanize 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
24 actions exposed via the
Kanbanize integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
KANBANIZE_ADD_CARD_COMMENT -
KANBANIZE_CHECK_BOARD_MILESTONE -
KANBANIZE_CHECK_USER_IS_CARD_WATCHER -
KANBANIZE_DELETE_BOARD -
KANBANIZE_DELETE_CARD -
KANBANIZE_DELETE_TAG -
KANBANIZE_DELETE_WORKFLOW -
KANBANIZE_GET_BOARD_BLOCK_REASONS -
KANBANIZE_GET_BOARD_CARD_TEMPLATES -
KANBANIZE_GET_CHILD_CARDS -
KANBANIZE_GET_COLUMN -
KANBANIZE_GET_COLUMNS
Show all 24 actions
-
KANBANIZE_GET_CUSTOM_FIELDS -
KANBANIZE_GET_STICKERS -
KANBANIZE_GET_USER -
KANBANIZE_GET_WORKFLOW_CYCLE_TIME_COLUMNS -
KANBANIZE_GET_WORKSPACE_DATA_FIELDS -
KANBANIZE_REMOVE_BOARD_BLOCK_REASON -
KANBANIZE_REMOVE_CHILD_CARD -
KANBANIZE_SET_CARD_BLOCK_REASON -
KANBANIZE_UPDATE_BOARD_STICKER -
KANBANIZE_UPDATE_DATA_FIELD_WORKSPACES -
KANBANIZE_UPDATE_LANE_DEFAULT_SETTING -
KANBANIZE_UPDATE_TAG
Build with Kanbanize
Open OverSkill, describe what you want to build, and reference Kanbanize in your prompt — the AI will wire up the integration automatically.