stages_create
Create a new stage in a Pipedrive pipeline by providing a name and pipeline ID. Optionally set position, deal probability, or enable rotting deals.
Instructions
Create a new pipeline stage.
Required: name + pipeline_id. Optional: order_nr (position in pipeline), deal_probability (0-100), is_deal_rot_enabled + days_to_rot for rotting deals.
Common use cases:
Basic stage: { "name": "Qualified", "pipeline_id": 1 }
With probability and rot: { "name": "Negotiation", "pipeline_id": 1, "deal_probability": 75, "is_deal_rot_enabled": true, "days_to_rot": 30 }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Display name (required) | |
| order_nr | No | Position in the pipeline | |
| days_to_rot | No | Days before a deal rots (requires is_deal_rot_enabled) | |
| pipeline_id | Yes | Pipeline this stage belongs to (required) | |
| deal_probability | No | Default deal win probability 0-100 | |
| is_deal_rot_enabled | No | Whether deals can rot in this stage |