move_lead_to_pipeline
Transfer a lead to a designated pipeline in Kommo CRM by specifying lead and pipeline IDs. Optionally assign a status to streamline workflow management and pipeline operations efficiently.
Instructions
Move a lead to a specific pipeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
lead_id | Yes | ID of the lead | |
pipeline_id | Yes | ID of the target pipeline | |
status_id | No | ID of the target status (optional) |
Input Schema (JSON Schema)
{
"properties": {
"lead_id": {
"description": "ID of the lead",
"type": "number"
},
"pipeline_id": {
"description": "ID of the target pipeline",
"type": "number"
},
"status_id": {
"description": "ID of the target status (optional)",
"type": "number"
}
},
"required": [
"lead_id",
"pipeline_id"
],
"type": "object"
}