Skip to main content
Glama

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

TableJSON Schema
NameRequiredDescriptionDefault
lead_idYesID of the lead
pipeline_idYesID of the target pipeline
status_idNoID of the target status (optional)

Implementation Reference

  • Supporting utility method in KommoAPI class that moves a lead to a specified pipeline and optionally a status by patching the lead entity via Kommo API.
    async moveLeadToPipeline(leadId: number, pipelineId: number, statusId?: number): Promise<KommoLead> { const updateData: any = { pipeline_id: pipelineId }; if (statusId) { updateData.status_id = statusId; } const response = await this.client.patch(`/api/v4/leads/${leadId}`, updateData); return response.data; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Miguelgbastos/Kommo-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server