folder_update
Update a folder's name or other fields by providing its ID. Partial patch triggers sync across OmniFocus devices.
Instructions
Rename a folder (partial patch — only supplied fields are changed). To move a folder use folder_move instead. Get the folder ID from folder_list. Returns the updated folder on success. Triggers a sync; call sync_trigger after to propagate to other devices. Example: folder_update({ id: "fld123", name: "Personal" })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Persistent folder ID. Get from folder_list. | |
| name | No | New folder name. Must be non-empty if supplied. |