PUT api/Folders

Updates the folder.

Request Information

URI Parameters

None.

Body Parameters

The folder model.

ESignSystems.SmartSAFE.Models.Folders.FolderModel
NameDescriptionTypeAdditional 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": "2024-11-26T17:30:23.5511226-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>2024-11-26T17:30:23.5511226-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 updated folder model.

System.Web.Http.IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.