Mixpanel integration
Mixpanel is a product analytics platform tracking user interactions and…
- Provider
- mixpanel
- Category
- Analytics
- Setup
- User-supplied API key
- Actions
- 50 listed in catalog
Start with one action
- Define the result. Choose one task, the data it needs, and who may run it. Start with a read when possible.
- Check access. Review the setup state below and the connection available to your workspace or app user. A catalog listing does not confirm that an account is connected.
- Inspect the current inputs. Ask the editor to discover the actions for Mixpanel and inspect the selected action's required inputs and returned data before implementing it.
- Verify with test data. Compare the result with what you expected. Check unauthorized access and error handling before relying on the feature.
Developer details: the supplied app client
Generated apps that include src/lib/composio.ts expose the following import in their React app code:
import { executeAction } from "@/lib/composio";
Its call signature is executeAction(actionName, params, options?). Supply the exact current action name and inputs from its specification. This import identifies the helper; it is not a complete or tested integration example.
The editor's os-list-integrations tool discovers an integration using integration_slug. Include both integration_slug and action_slug to retrieve the selected action's input and output schemas. Do not invent parameters from a catalog description.
executeAction requires a signed-in app user and any connection the action needs. The separate publicAction helper is only for a confirmed no-auth toolkit on an enabled public proxy. It does not make OAuth or API-key integrations anonymous.
Existing apps may contain an older client. Inspect the app's files and connection selection before changing a call. Keep provider credentials out of browser code and test failure handling; this guide does not promise automatic retries or synchronization.
Setup
This setup uses a supplied Mixpanel API key. Follow the available connection form, then verify one action after setup.
Catalog actions
This saved catalog snapshot lists 50 actions. Names and inputs can change. Inspect the current action specification and connection requirements before adding a call; this list is not an execution test.
-
MIXPANEL_ADD_UNIQUE_TO_PROFILE_LIST_PROPERTY -
MIXPANEL_AGGREGATED_EVENT_PROPERTY_VALUES -
MIXPANEL_AGGREGATE_EVENT_COUNTS -
MIXPANEL_AGGREGATE_EVENTS -
MIXPANEL_COHORTS_LIST -
MIXPANEL_CREATE_ANNOTATION_TAG -
MIXPANEL_CREATE_IDENTITY -
MIXPANEL_CREATE_SERVICE_ACCOUNT -
MIXPANEL_DELETE_GROUP -
MIXPANEL_DELETE_PROFILE -
MIXPANEL_DELETE_PROFILE_BATCH -
MIXPANEL_DELETE_PROFILE_PROPERTY
Show all 50 actions
-
MIXPANEL_GET_ALL_PROJECTS -
MIXPANEL_GET_ANNOTATION_TAGS_ALT1 -
MIXPANEL_GROUP_BATCH_UPDATE -
MIXPANEL_GROUP_DELETE_PROPERTY -
MIXPANEL_GROUP_SET_PROPERTY -
MIXPANEL_IDENTITY_CREATE_ALIAS -
MIXPANEL_JQL_QUERY -
MIXPANEL_LIST_COHORTS -
MIXPANEL_LIST_FUNNELS -
MIXPANEL_LIST_SAVED_COHORTS -
MIXPANEL_LIST_SERVICE_ACCOUNTS -
MIXPANEL_PROFILE_APPEND_TO_LIST_PROPERTY -
MIXPANEL_PROFILE_BATCH_UPDATE -
MIXPANEL_PROFILE_DELETE_PROPERTY -
MIXPANEL_PROFILE_EVENT_ACTIVITY -
MIXPANEL_PROFILE_NUMERICAL_ADD -
MIXPANEL_PROFILE_REMOVE_FROM_LIST_PROPERTY -
MIXPANEL_PROFILE_SET -
MIXPANEL_QUERY_FREQUENCY_REPORT -
MIXPANEL_QUERY_FUNNEL -
MIXPANEL_QUERY_INSIGHT -
MIXPANEL_QUERY_MONTHS_TOP_EVENT_NAMES -
MIXPANEL_QUERY_NUMERIC_AVERAGE -
MIXPANEL_QUERY_NUMERIC_SUM -
MIXPANEL_QUERY_PROFILES -
MIXPANEL_QUERY_RETENTION_REPORT -
MIXPANEL_QUERY_SEGMENTATION -
MIXPANEL_QUERY_TOP_EVENTS -
MIXPANEL_REMOVE_FROM_GROUP_LIST_PROPERTY -
MIXPANEL_REMOVE_FROM_LIST_PROPERTY -
MIXPANEL_SEGMENTATION_NUMERIC_QUERY -
MIXPANEL_SET_GROUP_PROPERTY_ONCE -
MIXPANEL_SET_PROFILE_PROPERTY_ONCE -
MIXPANEL_TODAYS_TOP_EVENTS -
MIXPANEL_TOP_EVENT_PROPERTIES -
MIXPANEL_TOP_EVENT_PROPERTY_VALUES -
MIXPANEL_TOP_EVENTS -
MIXPANEL_UPDATE_GROUP_LIST_PROPERTY
Build with Mixpanel
Describe one task you want your app to perform with Mixpanel. Check the connection requirements, then verify the result in your app. Building and running the feature may use credits; review current pricing.