v1
latestOpenAPI 3.0.02026-08-064311,0881.3 MBfolderManagement
Update a folder.
Update an existing folder with the given identifier. Set the header parameter isAdminMode to "true" if updating a folder inside "Admin Recommended" folder.
put/v2/content/folders/{id}
Path parameters
idstring required
Identifier of the folder to update.
Headers
isAdminModestring
Set this to "true" if you want to perform the request as a Content Administrator.
Request body
Example request
{
"name": "SampleFolder",
"description": "This is a sample folder."
}Response
The folder was successfully updated.
Example response
{
"createdAt": "2018-10-16T09:10:00Z",
"createdBy": "0000000006743FDD",
"modifiedAt": "2018-10-16T09:10:00Z",
"modifiedBy": "0000000006743FE8",
"id": "000000000C1C17C6",
"name": "Personal",
"itemType": "Folder",
"parentId": "0000000001C41EF2",
"permissions": [
"View",
"GrantView",
"Edit"
],
"description": "This is a sample folder.",
"children": [
{
"createdAt": "2018-10-16T09:10:00Z",
"createdBy": "0000000006743FDD",
"modifiedAt": "2018-10-16T09:10:00Z",
"modifiedBy": "0000000006743FE8",
"id": "000000000C1C17C6",
"name": "Personal",
"itemType": "Folder",
"parentId": "0000000001C41EF2",
"permissions": [
"View",
"GrantView",
"Edit"
],
"description": "Personal folder for John Doe"
}
]
}