PUT v1/assets/folder/{id}
Use this method to update the information for a folder.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id |
UUID of the folder to update. |
string |
Required |
Body Parameters
Values to be updated where any none-included/null value will be ignored.
FolderUpdateModelName | Description | Type | Additional information |
---|---|---|---|
name |
Folder Name, the maximum size of this field is 200 characters, and special characters are allowed. |
string |
None. |
parent |
Only the root folder has no parent. When updating a folder, living this field empty will simply ignore it, but if the field is different than its original value, the folder will be moved to its new parent. |
string |
None. |
notes |
Use this property to save notes for this folder. The amount of text associated is virtually unlimited, just remember that the more data, the heavier operations become. |
string |
None. |
tags |
List of tags, currently only saving / retrieving tags are functional but tags are not included within searching functionality. |
Collection of string |
None. |
Request Formats
application/json, text/json
{ "name": "sample string 1", "parent": "sample string 2", "notes": "sample string 3", "tags": [ "sample string 1", "sample string 2" ] }
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |