update_subtask
Update an existing subtask in your organization. Only the fields you provide are changed (PATCH semantics). You can rename the subtask, update its description, change its status, billing type, and set an hour limit. Discover ids with find_billing_work - never ask the user for an id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | New subtask name. | |
| status | No | Subtask status. One of: Active, Inactive, Completed. | |
| hour_limit | No | Hour limit for this subtask (0 = unlimited). Validated against the parent task's limit for the subtask's billing type. | |
| subtask_id | Yes | Id of the subtask to update (required). Must be a subtask in your organization. | |
| description | No | Subtask description. | |
| billing_type | No | Billing type for this subtask. One of: TM, Fix, OVH. Must be allowed by the parent task. | |
| idempotency_key | No | Optional caller-supplied key; retrying with the same key returns the original result instead of acting twice. |