get_lead_events
Retrieve events associated with a specific lead in Kommo CRM, allowing users to monitor activity, manage timelines, and optimize workflow efficiency. Supports pagination for handling large datasets.
Instructions
Get events for a specific lead
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lead_id | Yes | ID of the lead | |
limit | No | Number of events to return | |
page | No | Page number for pagination |
Input Schema (JSON Schema)
{
"properties": {
"lead_id": {
"description": "ID of the lead",
"type": "number"
},
"limit": {
"description": "Number of events to return",
"type": "number"
},
"page": {
"description": "Page number for pagination",
"type": "number"
}
},
"required": [
"lead_id"
],
"type": "object"
}