get_pipeline_performance_report
Generate a pipeline performance report for a specified date range in Kommo CRM, enabling detailed analysis of pipeline operations and performance tracking.
Instructions
Get pipeline performance report for a date range
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| date_from | Yes | Start date (YYYY-MM-DD) | |
| date_to | Yes | End date (YYYY-MM-DD) |
Implementation Reference
- src/kommo-api.ts:443-451 (handler)The main handler function for the get_pipeline_performance_report tool. It makes an API call to the Kommo CRM endpoint '/api/v4/leads/pipelines/reports' with date parameters and returns the performance report data.async getPipelinePerformanceReport(dateFrom: string, dateTo: string): Promise<any> { const response = await this.client.get('/api/v4/leads/pipelines/reports', { params: { date_from: dateFrom, date_to: dateTo } }); return response.data; }