ticktick_convert_task_to_event
Convert a TickTick task into a calendar event by specifying the task ID, start time, duration, and optional reminder settings for better scheduling.
Instructions
Transform task into calendar event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
create_reminder | No | Create reminder for the event | |
event_duration_minutes | No | Duration of the event in minutes | |
start_time | No | Preferred start time (ISO format) | |
task_id | Yes | ID of task to convert |
Input Schema (JSON Schema)
{
"properties": {
"create_reminder": {
"default": true,
"description": "Create reminder for the event",
"type": "boolean"
},
"event_duration_minutes": {
"default": 60,
"description": "Duration of the event in minutes",
"type": "number"
},
"start_time": {
"description": "Preferred start time (ISO format)",
"type": "string"
},
"task_id": {
"description": "ID of task to convert",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}