get-tasks-by-day
Retrieve tasks scheduled for a specific date from Sunsama, with options to filter by completion status to focus on pending or finished work.
Instructions
Get tasks for a specific day with optional filtering by completion status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
completionFilter | No | Filter tasks by completion status. 'all' returns all tasks, 'incomplete' returns only incomplete tasks, 'completed' returns only completed tasks. Defaults to 'all' | |
day | Yes | ||
timezone | No | Timezone string (e.g., 'America/New_York'). If not provided, uses user's default timezone |
Input Schema (JSON Schema)
{
"properties": {
"completionFilter": {
"description": "Filter tasks by completion status. 'all' returns all tasks, 'incomplete' returns only incomplete tasks, 'completed' returns only completed tasks. Defaults to 'all'",
"enum": [
"all",
"incomplete",
"completed"
],
"type": "string"
},
"day": {
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"timezone": {
"description": "Timezone string (e.g., 'America/New_York'). If not provided, uses user's default timezone",
"type": "string"
}
},
"required": [
"day"
],
"type": "object"
}