POST api/Folders
Adds the folder.
Request Information
URI Parameters
None.
Body Parameters
The folder model.
ESignSystems.SmartSAFE.Models.Folders.FolderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FolderId |
Gets or sets the folder identifier. |
integer |
None. |
| ParentFolderId |
Gets or sets the parent folder identifier. |
integer |
None. |
| ClientId |
Gets or sets the client identifier. |
integer |
None. |
| Name |
Gets the name. |
string |
Required Max length: 300 |
| CreatedDate |
Gets or sets the created date. |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"FolderId": 1,
"ParentFolderId": 1,
"ClientId": 1,
"Name": "sample string 1",
"CreatedDate": "2025-11-04T12:36:34.3926217-05:00"
}
application/xml, text/xml
Sample:
<FolderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Folders"> <ClientId>1</ClientId> <CreatedDate>2025-11-04T12:36:34.3926217-05:00</CreatedDate> <FolderId>1</FolderId> <Name>sample string 1</Name> <ParentFolderId>1</ParentFolderId> </FolderModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The added folder model.
ESignSystems.SmartSAFE.Models.Folders.FolderModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FolderId |
Gets or sets the folder identifier. |
integer |
None. |
| ParentFolderId |
Gets or sets the parent folder identifier. |
integer |
None. |
| ClientId |
Gets or sets the client identifier. |
integer |
None. |
| Name |
Gets the name. |
string |
Required Max length: 300 |
| CreatedDate |
Gets or sets the created date. |
date |
None. |
Response Formats
application/json, text/json
Sample:
{
"FolderId": 1,
"ParentFolderId": 1,
"ClientId": 1,
"Name": "sample string 1",
"CreatedDate": "2025-11-04T12:36:34.3926217-05:00"
}
application/xml, text/xml
Sample:
<FolderModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Folders"> <ClientId>1</ClientId> <CreatedDate>2025-11-04T12:36:34.3926217-05:00</CreatedDate> <FolderId>1</FolderId> <Name>sample string 1</Name> <ParentFolderId>1</ParentFolderId> </FolderModel>