hubspot_get_pipeline_analytics
Analyze sales pipeline performance by retrieving conversion rates between stages for a specified time period to identify bottlenecks and optimize sales processes.
Instructions
Get analytics for a specific sales pipeline including conversion rates between stages
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endDate | No | End date for analysis in ISO format (YYYY-MM-DD) | |
| period | Yes | Time period to group analytics data by | |
| pipelineId | Yes | The ID of the pipeline to analyze | |
| startDate | Yes | Start date for analysis in ISO format (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date for analysis in ISO format (YYYY-MM-DD)",
"type": "string"
},
"period": {
"description": "Time period to group analytics data by",
"enum": [
"daily",
"weekly",
"monthly",
"quarterly",
"yearly"
],
"type": "string"
},
"pipelineId": {
"description": "The ID of the pipeline to analyze",
"type": "string"
},
"startDate": {
"description": "Start date for analysis in ISO format (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"pipelineId",
"period",
"startDate"
],
"type": "object"
}