ticktick_create_task
Create and manage tasks in TickTick by specifying title, description, priority, due date, and tags to organize tasks efficiently within projects.
Instructions
Create a new task in TickTick
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | Task description/content | |
due_date | No | Due date in ISO format (YYYY-MM-DDTHH:mm:ss) | |
priority | No | Task priority (0=None, 1=Low, 3=Medium, 5=High) | |
project_id | No | Project ID to add task to | |
tags | No | Tags for the task | |
title | Yes | Task title |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Task description/content",
"type": "string"
},
"due_date": {
"description": "Due date in ISO format (YYYY-MM-DDTHH:mm:ss)",
"type": "string"
},
"priority": {
"default": 0,
"description": "Task priority (0=None, 1=Low, 3=Medium, 5=High)",
"type": "number"
},
"project_id": {
"description": "Project ID to add task to",
"type": "string"
},
"tags": {
"description": "Tags for the task",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "Task title",
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}