hubspot_get_sales_performance
Analyze sales team performance metrics by time period to track rep productivity and pipeline effectiveness using HubSpot CRM data.
Instructions
Get performance metrics for sales reps over a specific time period
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endDate | No | End date for analysis in ISO format (YYYY-MM-DD) | |
| ownerIds | No | List of owner IDs to include in the analysis | |
| period | Yes | Time period to group performance data by | |
| pipeline | No | Pipeline ID to filter by | |
| 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"
},
"ownerIds": {
"description": "List of owner IDs to include in the analysis",
"items": {
"type": "string"
},
"type": "array"
},
"period": {
"description": "Time period to group performance data by",
"enum": [
"daily",
"weekly",
"monthly",
"quarterly",
"yearly"
],
"type": "string"
},
"pipeline": {
"description": "Pipeline ID to filter by",
"type": "string"
},
"startDate": {
"description": "Start date for analysis in ISO format (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"period",
"startDate"
],
"type": "object"
}