> ## Documentation Index
> Fetch the complete documentation index at: https://nango-wari-migrated-bigcommerce-docs.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Mixpanel

## Overview

<CardGroup cols={3}>
  <Card title="Pre-built tooling" icon="screwdriver-wrench" href="#pre-built-tooling" />

  <Card title="Pre-built integrations" icon="square-check" href="#pre-built-integrations" />

  <Card title="Access requirements" icon="triangle-exclamation" href="#access-requirements" />

  <Card title="Setup guide" icon="rocket" href="#setup-guide" />

  <Card title="Useful links" icon="circle-info" href="#useful-links" />

  <Card title="API gotchas" icon="biohazard" href="#api-gotchas" />
</CardGroup>

## Pre-built tooling

<AccordionGroup>
  <Accordion title="✅ Authorization">
    | Tools                           | Status |
    | ------------------------------- | ------ |
    | Pre-built authorization (Basic) | ✅      |
    | Pre-built authorization UI      | ✅      |
    | Custom authorization UI         | ✅      |
    | End-user authorization guide    | ✅      |
    | Expired credentials detection   | ✅      |
  </Accordion>

  <Accordion title="✅ Read & write data">
    | Tools                                     | Status                         |
    | ----------------------------------------- | ------------------------------ |
    | Pre-built integrations                    | ✅                              |
    | API unification                           | ✅                              |
    | 2-way sync                                | ✅                              |
    | Webhooks from Nango on data modifications | ✅                              |
    | Real-time webhooks from 3rd-party API     | 🚫 (time to contribute: \<48h) |
    | Proxy requests                            | ✅                              |
  </Accordion>

  <Accordion title="✅ Observability & data quality">
    | Tools                   | Status |
    | ----------------------- | ------ |
    | HTTP request logging    | ✅      |
    | End-to-end type safety  | ✅      |
    | Data runtime validation | ✅      |
    | OpenTelemetry export    | ✅      |
    | Slack alerts on errors  | ✅      |
    | Integration status API  | ✅      |
  </Accordion>

  <Accordion title="✅ Customization">
    | Tools                              | Status                         |
    | ---------------------------------- | ------------------------------ |
    | Create or customize use-cases      | ✅                              |
    | Pre-configured pagination          | 🚫 (time to contribute: \<48h) |
    | Pre-configured rate-limit handling | 🚫 (time to contribute: \<48h) |
    | Per-customer configurations        | ✅                              |
  </Accordion>
</AccordionGroup>

### Others

| Function name                      | Description                                       | Type                                           | Source code                                                                                                                               |
| ---------------------------------- | ------------------------------------------------- | ---------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
| `add-service-accounts-to-projects` | Assign service accounts to projects.              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/add-service-accounts-to-projects.ts) |
| `append-profile-list-property`     | Append values to a user profile list property.    | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/append-profile-list-property.ts)     |
| `batch-update-group-profiles`      | Batch update group profiles                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/batch-update-group-profiles.ts)      |
| `batch-update-profiles`            | Batch update user profiles.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/batch-update-profiles.ts)            |
| `create-alias`                     | Create an alias.                                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/create-alias.ts)                     |
| `create-annotation`                | Create a project annotation                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/create-annotation.ts)                |
| `create-identity`                  | Create an identity mapping.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/create-identity.ts)                  |
| `delete-all-schemas`               | Delete all Lexicon schemas in a project           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/delete-all-schemas.ts)               |
| `delete-annotation`                | Delete a project annotation.                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/delete-annotation.ts)                |
| `delete-group-property`            | Delete group profile properties                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/delete-group-property.ts)            |
| `delete-group`                     | Delete a group profile.                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/delete-group.ts)                     |
| `delete-profile-property`          | Delete user profile properties.                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/delete-profile-property.ts)          |
| `delete-profile`                   | Delete a profile                                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/delete-profile.ts)                   |
| `delete-schema`                    | Delete one Lexicon schema by entity and name.     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/delete-schema.ts)                    |
| `delete-schemas-for-entity`        | Delete all Lexicon schemas for an entity type     | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/delete-schemas-for-entity.ts)        |
| `import-events`                    | Import historical events                          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/import-events.ts)                    |
| `increment-profile-property`       | Increment numeric user profile properties         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/increment-profile-property.ts)       |
| `list-annotation-tags`             | List annotation tags.                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/list-annotation-tags.ts)             |
| `list-lookup-tables`               | List lookup tables.                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/list-lookup-tables.ts)               |
| `list-schemas-for-entity`          | List Lexicon schemas for an entity type.          | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/list-schemas-for-entity.ts)          |
| `list-warehouse-imports`           | List warehouse imports.                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/list-warehouse-imports.ts)           |
| `patch-annotation`                 | Patch a project annotation.                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/patch-annotation.ts)                 |
| `query-profile-activity`           | Query a profile event activity stream.            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/query-profile-activity.ts)           |
| `query-profiles`                   | Query user profiles with Engage.                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/query-profiles.ts)                   |
| `remove-group-list-property`       | Remove values from a group profile list property. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/remove-group-list-property.ts)       |
| `remove-profile-list-property`     | Remove values from a user profile list property   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/remove-profile-list-property.ts)     |
| `set-group-property-once`          | Set group profile properties only if absent.      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/set-group-property-once.ts)          |
| `set-group-property`               | Set or update group profile properties.           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/set-group-property.ts)               |
| `set-profile-property-once`        | Set user profile properties only if absent.       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/set-profile-property-once.ts)        |
| `set-profile`                      | Create or update an Engage profile.               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/set-profile.ts)                      |
| `track-event`                      | Track an event.                                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/track-event.ts)                      |
| `union-group-list-property`        | Union values into a group profile list property.  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/union-group-list-property.ts)        |
| `union-profile-list-property`      | Union values into a user profile list property.   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/union-profile-list-property.ts)      |
| `update-profile-property`          | Set or update user profile properties             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/actions/update-profile-property.ts)          |
| `annotations`                      | Sync annotations.                                 | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/syncs/annotations.ts)                        |
| `events`                           | Sync events.                                      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/syncs/events.ts)                             |
| `lexicon-schemas`                  | Sync Mixpanel Lexicon schemas                     | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/syncs/lexicon-schemas.ts)                    |
| `lookup-tables`                    | Sync Mixpanel lookup tables                       | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/syncs/lookup-tables.ts)                      |
| `project-service-accounts`         | Sync project service account memberships          | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/mixpanel/syncs/project-service-accounts.ts)           |

## Access requirements

| Pre-Requisites    | Status | Comment |
| ----------------- | ------ | ------- |
| Paid dev account  | ❓      |         |
| Paid test account | ❓      |         |
| Partnership       | ❓      |         |
| App review        | ❓      |         |
| Security audit    | ❓      |         |

## Setup guide

*No setup guide yet.*

<Tip>Need help getting started? Get help in the [community](https://nango.dev/slack).</Tip>

<Note>Contribute improvements to the setup guide by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/mixpanel.mdx)</Note>

## Useful links

* [How to find API credentials (for end-users)](https://developer.mixpanel.com/reference/service-accounts)
* [Auth docs](https://developer.mixpanel.com/reference/service-accounts)
* [Web API docs (their REST API)](https://developer.mixpanel.com/reference/overview)

<Note>Contribute useful links by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/mixpanel.mdx)</Note>

## API gotchas

* For Basic auth, Mixpanel uses the service account username as username and service account secret as password.
* Mixpanel has [different API base URLs](https://docs.mixpanel.com/docs/other-bits/privacy-and-security/eu-residency) for querying data from European Unions projects.

<Note>Contribute API gotchas by [editing this page](https://github.com/nangohq/nango/tree/master/docs/integrations/all/mixpanel.mdx)</Note>

<Card title="Connect to Mixpanel" icon="link" href="/integrations/all/mixpanel/connect" horizontal>
  Guide to connect to Mixpanel using Nango Connect.
</Card>
