Folders
Update Folder
Allows the requester to modify certain fields on a folder.
When updating the parent field, the folder moves to the new parent location while its contents remain intact. The requesting user must have both edit and share access to both the old and new parent folders, or the entire update will fail.
It is not permitted to update the parent field on Team Folders. Moving folders into or out of Team Folders may encounter permission-related errors, but once a folder is within a Team Folder, reorganization among descendants within that Team Folder can proceed without permission issues.
patch/v1/folders/{id}
Path parameters
idnumber required
ID of the folder to be updated.
Request body
Response
OK with a Folder resource containing information about the updated folder.
Example response
{
"id": 123456789,
"type": "folder",
"name": "Folder Name",
"parent": 123456788,
"created": "2020-06-26T16:29:37Z",
"trashed": "2022-01-20T12:14:18Z",
"attributes": [
{
"name": "Sample Label",
"value": "Sample Value"
}
]
}