Create task
clickup_create_taskWRITE: create a new task in a list. name is required; the list is the {list_id} path param, not a body field. ClickUp REST: POST /list/{list_id}/task.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The task name (required). | |
| tags | No | Tag names to attach. | |
| parent | No | Parent task id — set to create this task as a subtask. | |
| status | No | Status name (must be a valid status in the list). | |
| list_id | Yes | The list id to create the task in (path param, not body). | |
| due_date | No | Due date as Unix time in ms. | |
| priority | No | Task priority: 1=Urgent, 2=High, 3=Normal, 4=Low. | |
| assignees | No | User ids to assign the task to (numeric). | |
| start_date | No | Start date as Unix time in ms. | |
| description | No | The task description / body text. | |
| due_date_time | No | Whether due_date carries a time component (else date-only). |