update_task
Update an existing task in your organization. Only the fields you provide are changed (PATCH semantics). You can rename the task, update its description, change its status, and set per-type hour limits. Discover ids with find_billing_work - never ask the user for an id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New task name. | |
| status | No | Task status. One of: Active, Inactive, Completed. | |
| task_id | Yes | Id of the task to update (required). Must be a task in your organization. | |
| description | No | Task description. | |
| tm_hour_limit | No | T&M (Time & Materials) hour limit for this task (0 = unlimited). | |
| fix_hour_limit | No | Fixed-price hour limit for this task (0 = unlimited). | |
| ovh_hour_limit | No | Overhead hour limit for this task (0 = unlimited). | |
| idempotency_key | No | Optional caller-supplied key; retrying with the same key returns the original result instead of acting twice. |