pipelines_update
Update an existing pipeline by changing its name, order, active status, or probability tracking. Provide the pipeline ID and at least one field to update.
Instructions
Update an existing pipeline.
Updates pipeline configuration including name, order, active status, and probability tracking.
Workflow tips:
All fields except id are optional
Use order_nr to reorder pipelines
Set active=false to deactivate pipeline
Changing deal_probability affects all stages
At least one field should be updated
Common use cases:
Rename pipeline: { "id": 1, "name": "New Sales Pipeline" }
Deactivate pipeline: { "id": 1, "active": false }
Reorder pipeline: { "id": 1, "order_nr": 5 }
Update multiple fields: { "id": 1, "name": "Updated", "active": true, "order_nr": 1 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the pipeline to update | |
| name | No | New pipeline name (max 255 chars) | |
| active | No | Whether pipeline is active | |
| order_nr | No | New order number | |
| deal_probability | No | Enable/disable probability tracking |