create_task
Create a task in a ClickUp list by specifying the list ID and task name. Optionally add assignees, due date, priority, status, tags, and description.
Instructions
Create a new task in a list.
Parameters:
request: CreateTaskRequest with all task creation parameters Returns: Created task details from ClickUp API.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Task ID | |
| name | Yes | Task name | |
| description | No | Task description | |
| status | No | Task status | |
| priority | No | Task priority | |
| assignees | No | Task assignees | |
| tags | No | Task tags | |
| due_date | No | Due date as Unix timestamp | |
| created_at | No | Creation timestamp | |
| updated_at | No | Last update timestamp | |
| url | No | Task URL | |
| list_id | No | Parent list ID | |
| space_id | No | Parent space ID | |
| folder_id | No | Parent folder ID |