get_sales_report
Generate detailed sales reports for a specific date range to analyze performance and track revenue trends within Kommo CRM. Streamline data insights for informed business decisions.
Instructions
Get sales 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"
}