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
| Name | Required | Description | Default |
|---|---|---|---|
| date_from | Yes | Start date (YYYY-MM-DD) | |
| date_to | Yes | End date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"properties": {
"date_from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"date_to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"date_from",
"date_to"
],
"type": "object"
}