folder_move
Move a folder to a new parent folder or promote it to root level. Provide the folder ID and new parent ID to reorganize your OmniFocus hierarchy.
Instructions
Move a folder to a new parent, or promote it to a root folder by passing parentId=null. Do not use to rename a folder; prefer folder_update instead. Get folder IDs from folder_list. Returns the updated folder's ID and new parentId on success. Triggers a sync; call sync_trigger after to propagate to other devices. Example: folder_move({ id: "fld123", parentId: "fld456" }) Example: folder_move({ id: "fld123", parentId: null })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Persistent ID of the folder to move. Get from folder_list. | |
| parentId | Yes | New parent folder ID, or null to promote the folder to root level. |