ticktick_sync_with_outlook
Sync Outlook Calendar with task management by configuring calendar ID, sync direction, and meeting inclusion. Streamlines task organization and productivity through bidirectional integration.
Instructions
Outlook integration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_meetings | No | Include meeting invitations | |
outlook_calendar_id | Yes | Outlook Calendar ID to sync with | |
sync_direction | No | Sync direction | bidirectional |
Input Schema (JSON Schema)
{
"properties": {
"include_meetings": {
"default": true,
"description": "Include meeting invitations",
"type": "boolean"
},
"outlook_calendar_id": {
"description": "Outlook Calendar ID to sync with",
"type": "string"
},
"sync_direction": {
"default": "bidirectional",
"description": "Sync direction",
"enum": [
"import",
"export",
"bidirectional"
],
"type": "string"
}
},
"required": [
"outlook_calendar_id"
],
"type": "object"
}