get_completed_tasks_for_date
Retrieve completed tasks for a specific date from the Amazing Marvin app using API filtering. Input the date in YYYY-MM-DD format to access task details efficiently.
Instructions
Get completed tasks for a specific date using efficient API filtering
Args:
date: Date in YYYY-MM-DD format (e.g., '2025-06-13')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"title": "Date",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}