fields_create_product_field
Create custom fields for products like dropdowns, text, or numeric fields to store additional product data in Pipedrive.
Instructions
Create a new custom field for products.
For enum and set field types, you must provide options (a non-empty array of { label } objects).
Common use cases:
Add a "Product Category" dropdown to products
Add a custom text field (e.g., "SKU Code")
Add a numeric field (e.g., "Weight (kg)")
After creation, the field's key is the hash you must use in Product create/update payloads. Field definitions are cached for 15 minutes — call fields_list_product_fields after a brief delay to see it reflected.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Display name of the field | |
| options | No | Required for `enum` and `set` field types | |
| field_type | Yes | Type of the field. `enum`/`set` require `options`. | |
| add_visible_flag | No | Whether the field is shown in the "add" form by default |