profile_event_activity
Retrieve event activity data for specific user profiles to analyze individual user journeys, troubleshoot user-specific issues, and examine behavior patterns within Mixpanel analytics.
Instructions
Get data for a profile's event activity. Useful for understanding individual user journeys, troubleshooting user-specific issues, and analyzing behavior patterns of specific users.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
distinct_ids | Yes | A JSON array as a string representing the distinct_ids to return activity feeds for. Example: ["12a34aa567eb8d-9ab1c26f345b67-89123c45-6aeaa7-89f12af345f678"] | |
from_date | Yes | The date in yyyy-mm-dd format to begin querying from (inclusive) | |
project_id | No | The Mixpanel project ID. Optional since it has a default. | |
to_date | Yes | The date in yyyy-mm-dd format to query to (inclusive) | |
workspace_id | No | The ID of the workspace if applicable |
Input Schema (JSON Schema)
{
"properties": {
"distinct_ids": {
"description": "A JSON array as a string representing the distinct_ids to return activity feeds for. Example: [\"12a34aa567eb8d-9ab1c26f345b67-89123c45-6aeaa7-89f12af345f678\"]",
"type": "string"
},
"from_date": {
"description": "The date in yyyy-mm-dd format to begin querying from (inclusive)",
"type": "string"
},
"project_id": {
"description": "The Mixpanel project ID. Optional since it has a default.",
"type": "string"
},
"to_date": {
"description": "The date in yyyy-mm-dd format to query to (inclusive)",
"type": "string"
},
"workspace_id": {
"description": "The ID of the workspace if applicable",
"type": "string"
}
},
"required": [
"distinct_ids",
"from_date",
"to_date"
],
"type": "object"
}