query_insights_report
Retrieve pre-configured analytics reports and dashboards from Mixpanel to access saved insights with custom date ranges.
Instructions
Get saved insights reports. Useful for accessing pre-configured analytics reports and dashboards.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from_date | No | 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. | |
report_id | Yes | The ID of the saved insights report to retrieve | |
to_date | No | The date in yyyy-mm-dd format to query to (inclusive) |
Input Schema (JSON Schema)
{
"properties": {
"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"
},
"report_id": {
"description": "The ID of the saved insights report to retrieve",
"type": "string"
},
"to_date": {
"description": "The date in yyyy-mm-dd format to query to (inclusive)",
"type": "string"
}
},
"required": [
"report_id"
],
"type": "object"
}