Update a folder's metadata (member)
ic_folder_updateMutate an EXISTING folder's visibility / grantees / name / description / tags — you own it, or you're operator. Owner and parent (its place in the tree) can never change here. Only the fields you pass are touched; omit a field to leave it as-is. Args: { folder_id, visibility?: 'ic-members'|'grantees'|'private', grantees?: string[], name?: string, description?: string, tags?: string[] }. Returns: { ok, folder }. Required scope: files:write (ic-member+; only the owner or an operator).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Folder name. Omit to leave unchanged. | |
| tags | No | Free-text tags. Omit to leave unchanged. | |
| grantees | No | Clerk user ids allowed when visibility='grantees'. Omit to leave unchanged. | |
| folder_id | Yes | The folder id (d_...) to update. | |
| visibility | No | Who can see it. Omit to leave unchanged. | |
| description | No | What's in it. Omit to leave unchanged. |