ticktick_assign_task
Assign tasks to team members by specifying task ID, assignee ID, due date, priority, and optional notifications using TickTick MCP Server.
Instructions
Assign task to team member
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| assignee_id | Yes | ID of user to assign task to | |
| due_date | No | Due date for the assignment | |
| notification | No | Send notification to assignee | |
| priority | No | Priority level for the assignment | |
| task_id | Yes | ID of the task to assign |
Input Schema (JSON Schema)
{
"properties": {
"assignee_id": {
"description": "ID of user to assign task to",
"type": "string"
},
"due_date": {
"description": "Due date for the assignment",
"type": "string"
},
"notification": {
"default": true,
"description": "Send notification to assignee",
"type": "boolean"
},
"priority": {
"description": "Priority level for the assignment",
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"task_id": {
"description": "ID of the task to assign",
"type": "string"
}
},
"required": [
"task_id",
"assignee_id"
],
"type": "object"
}