create_task
Create tasks in ClickUp by specifying title, due date, assignees, priority, and list details. Streamline task management for project workflows.
Instructions
Create a new task in a specific list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignees | No | User IDs to assign | |
description | No | Task description | |
due_date | No | Due date (ISO 8601 format) | |
list_id | No | ID of the list (alternative to list_name) | |
list_name | No | Name of the list to create task in | |
priority | No | Priority (1=urgent, 2=high, 3=normal, 4=low) | |
time_estimate | No | Time estimate (e.g., '2h 30m') | |
title | Yes | Task title |
Input Schema (JSON Schema)
{
"properties": {
"assignees": {
"description": "User IDs to assign",
"items": {
"type": "integer"
},
"type": "array"
},
"description": {
"description": "Task description",
"type": "string"
},
"due_date": {
"description": "Due date (ISO 8601 format)",
"type": "string"
},
"list_id": {
"description": "ID of the list (alternative to list_name)",
"type": "string"
},
"list_name": {
"description": "Name of the list to create task in",
"type": "string"
},
"priority": {
"description": "Priority (1=urgent, 2=high, 3=normal, 4=low)",
"type": "integer"
},
"time_estimate": {
"description": "Time estimate (e.g., '2h 30m')",
"type": "string"
},
"title": {
"description": "Task title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}