mixpanel

by dragonkhoi
Verified

custom_jql

Run a custom JQL (JSON Query Language) script against your Mixpanel data

Input Schema

NameRequiredDescriptionDefault
paramsNoA JSON string containing parameters to pass to the script (will be available as the 'params' variable)
project_idNoThe Mixpanel project ID
scriptYesThe JQL script to run (JavaScript code that uses Mixpanel's JQL functions)
workspace_idNoThe ID of the workspace if applicable

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "params": { "description": "A JSON string containing parameters to pass to the script (will be available as the 'params' variable)", "type": "string" }, "project_id": { "description": "The Mixpanel project ID", "type": "string" }, "script": { "description": "The JQL script to run (JavaScript code that uses Mixpanel's JQL functions)", "type": "string" }, "workspace_id": { "description": "The ID of the workspace if applicable", "type": "string" } }, "required": [ "script" ], "type": "object" }