get_lead_conversion_report
Generate lead conversion reports within a specified date range to track and analyze CRM performance, enabling data-driven insights for better pipeline management.
Instructions
Get lead conversion 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"
}