Create activity
pipedrive_create_activityCreate a new activity (task/event). subject is required; link it to a deal/person/org and set type/date/time as needed. Pipedrive REST: POST /api/v2/activities.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| done | No | Whether the activity is already marked done. | |
| note | No | Free-text note attached to the activity. | |
| type | No | Activity type key, e.g. 'call', 'meeting', 'task', 'email'. | |
| org_id | No | Link to this organization id. | |
| deal_id | No | Link to this deal id. | |
| subject | Yes | Activity subject/title (required). | |
| due_date | No | Due date, yyyy-mm-dd. | |
| due_time | No | Due time, HH:MM (24h). | |
| duration | No | Duration, HH:MM. | |
| owner_id | No | Assign to this owner (user) id. | |
| person_id | No | Link to this person id. |