PUT api/FileFolder?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
FileFolderDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| SystemUserID | integer |
None. |
|
| Name | string |
None. |
|
| Type | integer |
None. |
|
| ParentID | integer |
None. |
|
| Shared | boolean |
None. |
|
| Starred | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"SystemUserID": 2,
"Name": "sample string 3",
"Type": 4,
"ParentID": 5,
"Shared": true,
"Starred": true
}
application/xml, text/xml
Sample:
<FileFolderDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO"> <ID>1</ID> <Name>sample string 3</Name> <ParentID>5</ParentID> <Shared>true</Shared> <Starred>true</Starred> <SystemUserID>2</SystemUserID> <Type>4</Type> </FileFolderDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>