pipedrive_create_task
Create a new task in a project by providing a title and project ID. Optionally set due date, assignees, priority, and milestone status.
Instructions
Create a new task in a project. title and project_id are required. Use boolean is_done/is_milestone (same field names as the GET response); a milestone task must have a due_date. (Projects add-on; Projects API in public beta.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Task title (required, 1-255 chars) | |
| project_id | Yes | ID of the project this task belongs to (required) | |
| parent_task_id | No | ID of the parent task (null for root-level) | |
| description | No | Task description | |
| is_done | No | Mark as done (true/false) | |
| is_milestone | No | Mark as milestone (true/false); a milestone task must have a due_date | |
| due_date | No | Task due date (YYYY-MM-DD) | |
| start_date | No | Task start date (YYYY-MM-DD) | |
| assignee_id | No | Assignee user ID | |
| assignee_ids | No | Array of assignee user IDs (max 10) | |
| priority | No | Task priority (integer >= 0, or null to unset) |