update_task
Update specific fields of a Feishu task by providing the task GUID, listing fields to update, and supplying their new values.
Instructions
[Official API + UAT, v1.3.7] Patch a task. update_fields is required by Feishu — list which fields to update (e.g. ["summary","due","completed_at"]).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task_guid | Yes | Task GUID | |
| update_fields | Yes | Required. Names of fields to update. E.g. ["summary","description","due","completed_at","start","extra","repeat_rule"]. Feishu only patches fields listed here, ignoring other keys in `task`. | |
| task | Yes | Field values. E.g. {summary:"new title", due:{timestamp:"1717939200000"}}. |