move_lead_to_status
Move a lead to a specified status in Kommo CRM by providing the lead ID and target status ID, enabling precise workflow and pipeline management.
Instructions
Move a lead to a specific status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lead_id | Yes | ID of the lead | |
status_id | Yes | ID of the target status |
Input Schema (JSON Schema)
{
"properties": {
"lead_id": {
"description": "ID of the lead",
"type": "number"
},
"status_id": {
"description": "ID of the target status",
"type": "number"
}
},
"required": [
"lead_id",
"status_id"
],
"type": "object"
}