update-task-snooze-date
Reschedule tasks or move them to backlog by updating the snooze date with a new target date in YYYY-MM-DD format.
Instructions
Update task snooze date to reschedule tasks or move them to backlog
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limitResponsePayload | No | Whether to limit the response payload size | |
| newDay | Yes | Target date in YYYY-MM-DD format | |
| taskId | Yes | The ID of the task to reschedule | |
| timezone | No | Timezone string (e.g., 'America/New_York'). If not provided, uses user's default timezone |
Input Schema (JSON Schema)
{
"properties": {
"limitResponsePayload": {
"description": "Whether to limit the response payload size",
"type": "boolean"
},
"newDay": {
"description": "Target date in YYYY-MM-DD format",
"format": "date",
"type": "string"
},
"taskId": {
"description": "The ID of the task to reschedule",
"minLength": 1,
"type": "string"
},
"timezone": {
"description": "Timezone string (e.g., 'America/New_York'). If not provided, uses user's default timezone",
"type": "string"
}
},
"required": [
"taskId",
"newDay"
],
"type": "object"
}