Files
Updates an existing folder
By passing in the appropriate ID and properties, you can update a folder
put/Folders/{FolderId}
Path parameters
FolderIdstring uuid required
Example:4ff1e5cc-9835-40d5-bb18-09fdb118db9c
Folder id for single object
Headers
Idempotency-Keystring
This allows you to safely retry requests without the risk of duplicate processing. 128 character max.
Request body
Example request
{
"Name": "assets",
"FileCount": 5,
"Email": "foo@bar.com",
"IsInbox": true,
"Id": "4ff1e5cc-9835-40d5-bb18-09fdb118db9c"
}Response
return the updated object
Example response
{
"Name": "assets",
"FileCount": 5,
"Email": "foo@bar.com",
"IsInbox": true,
"Id": "4ff1e5cc-9835-40d5-bb18-09fdb118db9c"
}