ticktick_get_upcoming_tasks
Retrieve upcoming tasks within a defined time frame using a specified days-ahead and limit parameters for efficient task organization within TickTick.
Instructions
Get upcoming tasks within specified days
Input Schema
Name | Required | Description | Default |
---|---|---|---|
days_ahead | No | Number of days to look ahead | |
limit | No | Maximum number of results |
Input Schema (JSON Schema)
{
"properties": {
"days_ahead": {
"default": 7,
"description": "Number of days to look ahead",
"type": "number"
},
"limit": {
"default": 30,
"description": "Maximum number of results",
"type": "number"
}
},
"type": "object"
}