create_lead_event
Add and manage events for a lead in Kommo CRM by specifying lead ID, event type, description, and responsible user ID. Streamline workflow and track lead interactions efficiently.
Instructions
Create a new event for a lead
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lead_id | Yes | ID of the lead | |
responsible_user_id | No | ID of responsible user | |
text | No | Event description | |
type | Yes | Type of event |
Input Schema (JSON Schema)
{
"properties": {
"lead_id": {
"description": "ID of the lead",
"type": "number"
},
"responsible_user_id": {
"description": "ID of responsible user",
"type": "number"
},
"text": {
"description": "Event description",
"type": "string"
},
"type": {
"description": "Type of event",
"type": "string"
}
},
"required": [
"lead_id",
"type"
],
"type": "object"
}