products_create
Create a new product in Pipedrive by specifying name, pricing, billing frequency, and visibility settings.
Instructions
Create a new product in Pipedrive.
Required fields:
name: Product name
Optional fields:
code: Product code (SKU)
description: Product description
unit: Unit type (e.g., "pcs", "kg", "hours")
tax: Tax percentage (0-100)
active_flag: Whether product is active (default: true)
selectable: Whether product can be selected in deals (default: true)
visible_to: Visibility level (1=owner only, 3=entire company)
owner_id: User who will own this product
prices: Array of price objects with format: [{"price": 100, "currency": "USD", "cost": 50}]
billing_frequency: One of: one-time, weekly, monthly, quarterly, semi-annually, annually
billing_frequency_cycles: Number of billing cycles
Example prices array: { "prices": [ {"price": 100, "currency": "USD", "cost": 50, "overhead_cost": 10, "notes": "Standard price"}, {"price": 85, "currency": "EUR", "cost": 45} ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Product name (required) | |
| code | No | Product code/SKU | |
| description | No | Product description | |
| unit | No | Unit type (e.g., pcs, kg, hours) | |
| tax | No | Tax percentage (0-100) | |
| active_flag | No | Whether product is active | |
| selectable | No | Whether product can be selected in deals | |
| visible_to | No | Visibility: 1 (owner only), 3 (entire company) | |
| owner_id | No | ID of the user who will own this product | |
| prices | No | Array of price objects | |
| billing_frequency | No | Billing frequency | |
| billing_frequency_cycles | No | Number of billing cycles |