Canny integration
Canny is a customer feedback management platform that helps teams collect,…
- Provider
- canny
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 25 available
Quick start
Call Canny from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Canny'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(
"CANNY_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 Canny 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
25 actions exposed via the
Canny integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
CANNY_ADD_POST_TAG -
CANNY_CHANGE_POST_STATUS -
CANNY_CREATE_CHANGELOG_ENTRY -
CANNY_CREATE_COMMENT -
CANNY_CREATE_OR_UPDATE_USER -
CANNY_CREATE_POST -
CANNY_CREATE_TAG -
CANNY_CREATE_VOTE -
CANNY_DELETE_COMMENT -
CANNY_DELETE_POST -
CANNY_DELETE_USER -
CANNY_DELETE_VOTE
Show all 25 actions
-
CANNY_LIST_BOARDS -
CANNY_LIST_CATEGORIES -
CANNY_LIST_COMMENTS -
CANNY_LIST_COMPANIES -
CANNY_LIST_OPPORTUNITIES -
CANNY_LIST_POSTS -
CANNY_LIST_TAGS -
CANNY_LIST_USERS -
CANNY_LIST_VOTES -
CANNY_RETRIEVE_BOARD -
CANNY_RETRIEVE_TAG -
CANNY_RETRIEVE_USER -
CANNY_UPDATE_POST
Build with Canny
Open OverSkill, describe what you want to build, and reference Canny in your prompt — the AI will wire up the integration automatically.