fields_create_organization_field
Add custom fields to organizations in Pipedrive, such as dropdowns, monetary values, or dates, to capture specific business data.
Instructions
Create a new custom field for organizations.
For enum and set field types, you must provide options (a non-empty array of { label } objects).
Common use cases:
Add a "Customer Type" dropdown to organizations
Add a custom monetary value (e.g., "Annual Revenue")
Add a date field (e.g., "Customer Since")
After creation, the field's key is the hash you must use in Organization create/update payloads. Field definitions are cached for 15 minutes — call fields_list_organization_fields after a brief delay to see it reflected.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Display name of the field | |
| field_type | Yes | Type of the field. `enum`/`set` require `options`. | |
| options | No | Required for `enum` and `set` field types | |
| add_visible_flag | No | Whether the field is shown in the "add" form by default |