deals_add_product
Attach a product to a Pipedrive deal, specifying price, quantity, discount, and subscription duration.
Instructions
Add a product to a deal.
Attaches a product to the deal with specific pricing, quantity, and discount.
Workflow tips:
Use products/search or products/list to find product IDs
Product must exist in Pipedrive catalog
Specify item_price to override default product price
Quantity defaults to 1 if not specified
Discount is percentage (0-100)
Duration is for subscription products
Common use cases:
Add basic product: { "id": 123, "product_id": 456 }
With custom price: { "id": 123, "product_id": 456, "item_price": 99.99, "quantity": 2 }
With discount: { "id": 123, "product_id": 456, "quantity": 10, "discount_percentage": 15 }
Subscription: { "id": 123, "product_id": 456, "duration": 12, "comments": "Annual subscription" }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the deal | |
| product_id | Yes | ID of the product to add | |
| item_price | No | Price at which this product will be added | |
| quantity | No | Quantity of items (default: 1) | |
| discount_percentage | No | Discount percentage (0-100, default: 0) | |
| duration | No | Duration for subscription products | |
| product_variation_id | No | ID of the product variation | |
| comments | No | Additional comments about the product | |
| enabled_flag | No | Whether the product is enabled (default: true) |