POST api/FileAssistant/Folder/{parentStructureId}
Create Document folder in database
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| parentStructureId |
parentStructureId |
integer |
Required |
Body Parameters
folderName
FolderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| FolderName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"folderName": "sample string 1"
}
text/html
Sample:
{"folderName":"sample string 1"}
application/xml, text/xml
Sample:
<FolderDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TR.eSAM.DocumentModule.Application.Dtos.Dtos.StructureAgg"> <FolderName>sample string 1</FolderName> </FolderDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Inserted Folder Path on Site
stringResponse Formats
application/json, text/json, text/html
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>