Name | Type | Description | Notes |
---|---|---|---|
note | string | The note of the activity (HTML format) | [optional] |
subject | string | The subject of the activity. When value for subject is not set, it will be given a default value `Call`. | [optional] |
type | string | The type of the activity. This is in correlation with the `key_string` parameter of ActivityTypes. When value for type is not set, it will be given a default value `Call`. | [optional] |
user_id | int | The ID of the user whom the activity is assigned to. If omitted, the activity is assigned to the authorized user. | [optional] |
participants | object[] | List of multiple persons (participants) this activity is associated with. If omitted, single participant from `person_id` field is used. It requires a structure as follows: `[{"person_id":1,"primary_flag":true}]` | [optional] |
busy_flag | bool | Set the activity as 'Busy' or 'Free'. If the flag is set to `true`, your customers will not be able to book that time slot through any Scheduler links. The flag can also be unset by never setting it or overriding it with `null`. When the value of the flag is unset (`null`), the flag defaults to 'Busy' if it has a time set, and 'Free' if it is an all-day event without specified time. | [optional] |
attendees | object[] | The attendees of the activity. This can be either your existing Pipedrive contacts or an external email address. It requires a structure as follows: `[{"email_address":"[email protected]"}]` or `[{"person_id":1, "email_address":"[email protected]"}]` | [optional] |
done | NumberBoolean | Whether the activity is done or not. 0 = Not done, 1 = Done | [optional] |