update-task-due-date
Change the due date for a Sunsama task by providing the task ID and new date, or remove the due date entirely to clear the deadline.
Instructions
Update the due date for a task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dueDate | Yes | Due date in ISO format (YYYY-MM-DDTHH:mm:ssZ) or null to clear the due date | |
| limitResponsePayload | No | Whether to limit the response payload size | |
| taskId | Yes | The ID of the task to update due date for |
Input Schema (JSON Schema)
{
"properties": {
"dueDate": {
"anyOf": [
{
"format": "date-time",
"type": "string"
},
{
"type": "null"
}
],
"description": "Due date in ISO format (YYYY-MM-DDTHH:mm:ssZ) or null to clear the due date"
},
"limitResponsePayload": {
"description": "Whether to limit the response payload size",
"type": "boolean"
},
"taskId": {
"description": "The ID of the task to update due date for",
"minLength": 1,
"type": "string"
}
},
"required": [
"taskId",
"dueDate"
],
"type": "object"
}