update-task-complete
Mark Sunsama tasks as complete with optional timestamp to track task completion and maintain updated task status.
Instructions
Mark a task as complete with optional completion timestamp
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| completeOn | No | Completion timestamp (ISO format). Defaults to current time | |
| limitResponsePayload | No | Whether to limit the response payload size | |
| taskId | Yes | The ID of the task to mark as complete |
Input Schema (JSON Schema)
{
"properties": {
"completeOn": {
"description": "Completion timestamp (ISO format). Defaults to current time",
"type": "string"
},
"limitResponsePayload": {
"description": "Whether to limit the response payload size",
"type": "boolean"
},
"taskId": {
"description": "The ID of the task to mark as complete",
"minLength": 1,
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}