Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 2.5 KB

BasePersonItem.md

File metadata and controls

23 lines (20 loc) · 2.5 KB

# BasePersonItem

Properties

Name Type Description Notes
id int The ID of the person [optional]
company_id int The ID of the company related to the person [optional]
active_flag bool Whether the person is active or not [optional]
phone \Pipedrive\Model\BasePersonItemPhone[] A phone number supplied as a string or an array of phone objects related to the person. The structure of the array is as follows: `[{ "value": "12345", "primary": "true", "label": "mobile" }]`. Please note that only `value` is required. [optional]
email \Pipedrive\Model\BasePersonItemEmail[] An email address as a string or an array of email objects related to the person. The structure of the array is as follows: `[{ "value": "[email protected]", "primary": "true", "label": "main" } ]`. Please note that only `value` is required. [optional]
first_char string The first letter of the name of the person [optional]
add_time string The date and time when the person was added/created. Format: YYYY-MM-DD HH:MM:SS [optional]
update_time string The last updated date and time of the person. Format: YYYY-MM-DD HH:MM:SS [optional]
visible_to string The visibility group ID of who can see the person [optional]
picture_id \Pipedrive\Model\PictureDataWithID [optional]
label int The label assigned to the person. When the `label` field is updated, the `label_ids` field value will be overwritten by the `label` field value. [optional]
label_ids int[] The IDs of labels assigned to the person. When the `label_ids` field is updated, the `label` field value will be set to the first value of the `label_ids` field. [optional]
org_name string The name of the organization associated with the person [optional]
owner_name string The name of the owner associated with the person [optional]
cc_email string The BCC email associated with the person [optional]

[Back to Model list] [Back to API list] [Back to README]