Developer docs

Klipfolio integration

Klipfolio is a cloud-based business intelligence platform that enables users to…

Updated June 2026 50 actions available

Provider
klipfolio
Category
Other
Setup
User-supplied API key
Actions
50 available

Quick start

Call Klipfolio from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Klipfolio'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(
  "KLIPFOLIO_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 Klipfolio 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

50 actions exposed via the Klipfolio integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 50 actions
  • KLIPFOLIO_DELETE_ROLE
  • KLIPFOLIO_DISABLE_DATA_SOURCE
  • KLIPFOLIO_ENABLE_DATA_SOURCE
  • KLIPFOLIO_GET_DASHBOARD
  • KLIPFOLIO_GET_DATA_SOURCE
  • KLIPFOLIO_GET_DATA_SOURCE_INSTANCE2
  • KLIPFOLIO_GET_DATA_SOURCE_INSTANCE_DATA
  • KLIPFOLIO_GET_DATA_SOURCE_INSTANCE_PROPERTIES
  • KLIPFOLIO_GET_DATA_SOURCE_PROPERTIES
  • KLIPFOLIO_GET_DATA_SOURCE_SHARE_RIGHTS
  • KLIPFOLIO_GET_GROUP
  • KLIPFOLIO_GET_GROUP_DEFAULT_TABS
  • KLIPFOLIO_GET_GROUP_USERS
  • KLIPFOLIO_GET_KLIPS
  • KLIPFOLIO_GET_PROFILE
  • KLIPFOLIO_GET_ROLE
  • KLIPFOLIO_GET_ROLE_PERMISSIONS
  • KLIPFOLIO_GET_ROLE_USERS
  • KLIPFOLIO_GET_USER
  • KLIPFOLIO_GET_USER_GROUPS
  • KLIPFOLIO_GET_USER_PROPERTIES
  • KLIPFOLIO_GET_USER_ROLES
  • KLIPFOLIO_GET_USER_TAB_INSTANCES
  • KLIPFOLIO_LIST_DATA_SOURCE_INSTANCES
  • KLIPFOLIO_LIST_DATA_SOURCES
  • KLIPFOLIO_LIST_GROUPS
  • KLIPFOLIO_LIST_ROLES
  • KLIPFOLIO_LIST_USERS
  • KLIPFOLIO_REFRESH_DATA_SOURCE_INSTANCE
  • KLIPFOLIO_REFRESH_MULTIPLE_DATA_SOURCES
  • KLIPFOLIO_RESEND_USER_INVITE
  • KLIPFOLIO_RESET_USER_PASSWORD
  • KLIPFOLIO_UPDATE_DATA_SOURCE
  • KLIPFOLIO_UPDATE_DATA_SOURCE_INSTANCE_PROPERTIES
  • KLIPFOLIO_UPDATE_DATA_SOURCE_METADATA
  • KLIPFOLIO_UPDATE_DATA_SOURCE_PROPERTIES
  • KLIPFOLIO_UPDATE_DATA_SOURCE_SHARE_RIGHTS
  • KLIPFOLIO_UPDATE_USER_PROPERTIES

Build with Klipfolio

Open OverSkill, describe what you want to build, and reference Klipfolio in your prompt — the AI will wire up the integration automatically.