ticktick_sync_with_google_calendar
Sync tasks between your Google Calendar and TickTick, allowing bidirectional, import, or export workflows. Specify a calendar ID, sync direction, and date range to manage events and tasks together.
Instructions
Google Calendar sync
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date_range_days | No | Number of days to sync (past and future) | |
google_calendar_id | Yes | Google Calendar ID to sync with | |
sync_direction | No | Sync direction | bidirectional |
Input Schema (JSON Schema)
{
"properties": {
"date_range_days": {
"default": 30,
"description": "Number of days to sync (past and future)",
"type": "number"
},
"google_calendar_id": {
"description": "Google Calendar ID to sync with",
"type": "string"
},
"sync_direction": {
"default": "bidirectional",
"description": "Sync direction",
"enum": [
"import",
"export",
"bidirectional"
],
"type": "string"
}
},
"required": [
"google_calendar_id"
],
"type": "object"
}