# task +update > **Prerequisites:** Please read `../lark-shared/SKILL.md` to understand authentication, global parameters, and security rules. Update an existing task in Lark. ## Recommended Commands ```bash # Update task summary lark-cli task +update --task-id "" --summary "New Summary" # Update multiple tasks' due dates lark-cli task +update --task-id "," --due "+2d" # Update with JSON data lark-cli task +update --task-id "" --data '{"description": "New description"}' ``` ## Parameters | Parameter | Required | Description | |-----------|----------|-------------| | `--task-id ` | Yes | The task GUID to update. Comma-separated task GUIDs are supported for multiple tasks. For Feishu task applinks, use the `guid` query parameter, not the `suite_entity_num` / display task ID like `t104121`. | | `--summary ` | No | New summary/title for the task. | | `--description ` | No | New description for the task. | | `--due