update-task-planned-time
Modify the time estimate for a Sunsama task by specifying minutes or clear the estimate to improve time management and planning accuracy.
Instructions
Update the planned time (time estimate) for a task
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limitResponsePayload | No | Whether to limit the response payload size | |
| taskId | Yes | The ID of the task to update planned time for | |
| timeEstimateMinutes | Yes | Time estimate in minutes (use 0 to clear the time estimate) |
Input Schema (JSON Schema)
{
"properties": {
"limitResponsePayload": {
"description": "Whether to limit the response payload size",
"type": "boolean"
},
"taskId": {
"description": "The ID of the task to update planned time for",
"minLength": 1,
"type": "string"
},
"timeEstimateMinutes": {
"description": "Time estimate in minutes (use 0 to clear the time estimate)",
"minimum": 0,
"type": "integer"
}
},
"required": [
"taskId",
"timeEstimateMinutes"
],
"type": "object"
}