create_lead_status
Define and configure new pipeline statuses in Kommo CRM by specifying pipeline ID, status name, color, and sort order. Streamline lead management and workflow organization.
Instructions
Create a new status for a pipeline
Input Schema
Name | Required | Description | Default |
---|---|---|---|
color | No | Color of the status (hex code) | |
name | Yes | Name of the status | |
pipeline_id | Yes | ID of the pipeline | |
sort | No | Sort order |
Input Schema (JSON Schema)
{
"properties": {
"color": {
"description": "Color of the status (hex code)",
"type": "string"
},
"name": {
"description": "Name of the status",
"type": "string"
},
"pipeline_id": {
"description": "ID of the pipeline",
"type": "number"
},
"sort": {
"description": "Sort order",
"type": "number"
}
},
"required": [
"pipeline_id",
"name"
],
"type": "object"
}