Update an existing folder’s properties such as name, visibility, upload permissions, or parent folder.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/diced/zipline/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
Authentication
Requires authentication via API token in theAuthorization header.
Path Parameters
The ID of the folder to update
Request Body
All fields are optional. Only include the fields you want to update.New name for the folder (will be trimmed of whitespace)
Set folder visibility. When
true, the folder is publicly accessible.Whether to allow uploads to this folder
ID of the new parent folder. Set to
null to make it a root folder. Cannot move a folder to itself or its descendants.Response
Returns the updated folder object.Unique identifier for the folder
The folder name
Whether the folder is publicly accessible
Whether uploads are allowed to this folder
ISO 8601 timestamp of when the folder was created
ISO 8601 timestamp of when the folder was last updated
ID of the user who owns this folder
ID of the parent folder, or
null if this is a root folderArray of file objects in this folder
Counts of related entities
Parent folder information
Example Request
Rename folder
Make folder public
Allow uploads
Move to different parent
Move to root level
Update multiple properties
Example Response
200 OK
400 Bad Request - Circular reference
400 Bad Request - Moving to descendant
403 Forbidden
404 Not Found
Notes
- You can only update folders you own (unless you’re an admin)
- The API prevents circular references - you cannot move a folder into itself or its descendants
- Setting
parentIdtonullmoves the folder to the root level - All property updates are atomic - either all succeed or none do