ticktick_get_recurring_tasks
Retrieve recurring tasks from TickTick by filtering based on project, frequency, and status to manage and organize repetitive activities effectively.
Instructions
List recurring tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
frequency_filter | No | Filter by recurrence frequency | all |
project_id | No | Filter by project | |
status | No | Filter by recurrence status | active |
Input Schema (JSON Schema)
{
"properties": {
"frequency_filter": {
"default": "all",
"description": "Filter by recurrence frequency",
"enum": [
"all",
"daily",
"weekly",
"monthly",
"yearly"
],
"type": "string"
},
"project_id": {
"description": "Filter by project",
"type": "string"
},
"status": {
"default": "active",
"description": "Filter by recurrence status",
"enum": [
"active",
"paused",
"completed"
],
"type": "string"
}
},
"type": "object"
}