pipelines_update
Modify a pipeline's details including name, order, active status, and probability tracking in Pipedrive.
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) | |
| order_nr | No | New order number | |
| active | No | Whether pipeline is active | |
| deal_probability | No | Enable/disable probability tracking |