update_task
Modify task status, track actual hours worked, and add notes to update task progress within the revenue management system.
Instructions
Update a task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actualHours | No | ||
notes | No | ||
status | No | ||
taskId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"actualHours": {
"type": "number"
},
"notes": {
"type": "string"
},
"status": {
"enum": [
"To Do",
"In Progress",
"Completed",
"Blocked"
],
"type": "string"
},
"taskId": {
"type": "number"
}
},
"required": [
"taskId"
],
"type": "object"
}