persons_create
Add a new contact to Pipedrive CRM with name, email, phone, ownership, and visibility settings.
Instructions
Create a new person in Pipedrive.
Required fields:
name: Full name of the person
Optional fields:
owner_id: User who will own this person
org_id: Organization this person belongs to
email: Array of email addresses with format: [{"value": "john@company.com", "primary": true, "label": "work"}]
phone: Array of phone numbers with format: [{"value": "+1234567890", "primary": true, "label": "mobile"}]
visible_to: Visibility level (1=owner only, 3=entire company, 5=owner's followers, 7=visibility group)
marketing_status: Marketing consent status (no_consent, unsubscribed, subscribed, archived)
add_time: Optional creation time in YYYY-MM-DD HH:MM:SS format
Example email/phone arrays: { "email": [ {"value": "john@company.com", "primary": true, "label": "work"}, {"value": "john@personal.com", "primary": false, "label": "home"} ], "phone": [ {"value": "+1234567890", "primary": true, "label": "mobile"} ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Full name of the person (required) | |
| owner_id | No | ID of the user who will own this person | |
| org_id | No | ID of the organization this person belongs to | |
| No | Email addresses array. Example: [{"value": "john@company.com", "primary": true, "label": "work"}] | ||
| phone | No | Phone numbers array. Example: [{"value": "+1234567890", "primary": true, "label": "mobile"}] | |
| visible_to | No | Visibility: 1 (owner only), 3 (entire company), 5 (owner's followers), 7 (visibility group) | |
| marketing_status | No | Marketing consent status | |
| add_time | No | Creation time in YYYY-MM-DD HH:MM:SS format |