ticktick_register_task_id
Manually register a task ID and its associated project ID in the cache for future reference, optionally including a task title for metadata.
Instructions
Manually register a task ID in the cache for future reading
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID the task belongs to | |
| task_id | Yes | Task ID to register | |
| title | No | Optional task title for cache metadata |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"description": "Project ID the task belongs to",
"type": "string"
},
"task_id": {
"description": "Task ID to register",
"type": "string"
},
"title": {
"description": "Optional task title for cache metadata",
"type": "string"
}
},
"required": [
"task_id",
"project_id"
],
"type": "object"
}