get_funnel_analysis
Analyze user funnels and conversion paths to understand behavior patterns. Input steps, dates, and filters to track event-based user journeys and improve conversion insights.
Instructions
Analyze user funnels and conversion paths
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date in ISO format | |
filters | No | Additional filters | |
startDate | No | Start date in ISO format | |
steps | Yes | Funnel steps in order |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in ISO format",
"type": "string"
},
"filters": {
"description": "Additional filters",
"type": "array"
},
"startDate": {
"description": "Start date in ISO format",
"type": "string"
},
"steps": {
"description": "Funnel steps in order",
"items": {
"properties": {
"eventType": {
"description": "Event type (LOCATION, CLICK, CUSTOM)",
"type": "string"
},
"eventValue": {
"description": "Event value to match",
"type": "string"
},
"name": {
"description": "Step name",
"type": "string"
}
},
"type": "object"
},
"type": "array"
}
},
"required": [
"steps"
],
"type": "object"
}