get_user_performance_stats
Retrieve detailed performance statistics for a specific user in Kommo CRM by specifying user ID and date range for analysis and insights.
Instructions
Get performance statistics for a specific user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_from | No | Start date (YYYY-MM-DD) | |
date_to | No | End date (YYYY-MM-DD) | |
user_id | Yes | ID of the user |
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"
},
"user_id": {
"description": "ID of the user",
"type": "number"
}
},
"required": [
"user_id"
],
"type": "object"
}