deals_create
Create a new deal in Pipedrive CRM. Provide at least a title; optionally add value, associated person or organization, pipeline stage, and expected close date.
Instructions
Create a new deal in Pipedrive.
Creates a new deal with the specified information. Only title is required.
Workflow tips:
Title is the only required field
Use persons/search or organizations/search to get person_id or org_id
Use pipelines/list to get pipeline_id and stage_id
Set expected_close_date in YYYY-MM-DD format
Probability should be 0-100 (percentage)
Currency must be a 3-letter code (e.g., USD, EUR, GBP)
Common use cases:
Simple deal: { "title": "New Deal", "value": 5000, "currency": "USD" }
Deal with person: { "title": "Deal", "value": 1000, "person_id": 123 }
Deal with organization: { "title": "Deal", "org_id": 456, "stage_id": 1 }
Full deal: { "title": "Big Deal", "value": 50000, "currency": "USD", "person_id": 123, "org_id": 456, "pipeline_id": 1, "stage_id": 2, "expected_close_date": "2024-12-31" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Deal title (required) | |
| value | No | Deal value | |
| currency | No | 3-letter currency code (e.g., USD, EUR) | |
| user_id | No | ID of the user who will own this deal | |
| person_id | No | ID of the person this deal is associated with | |
| org_id | No | ID of the organization this deal is associated with | |
| pipeline_id | No | ID of the pipeline this deal will be in | |
| stage_id | No | ID of the stage this deal will be in | |
| status | No | Deal status (default: open) | |
| expected_close_date | No | Expected close date in YYYY-MM-DD format | |
| probability | No | Deal success probability (0-100) | |
| lost_reason | No | Reason why the deal was lost | |
| visible_to | No | Visibility: 1=Owner, 3=Owner's group, 5=Owner's group and sub-groups, 7=Entire company | |
| add_time | No | Creation time in ISO 8601 format |