fields_create_person_field
Create custom person fields in Pipedrive to store additional contact data, like dropdown sources or custom text fields, enabling tailored CRM workflows.
Instructions
Create a new custom field for persons.
For enum and set field types, you must provide options (a non-empty array of { label } objects).
Common use cases:
Add a "Lead Source" dropdown to persons
Add a custom text field (e.g., "LinkedIn URL")
Add a date field (e.g., "Birthday")
After creation, the field's key is the hash you must use in Person create/update payloads. Field definitions are cached for 15 minutes — call fields_list_person_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 |