POST api/SigningRoomManager/SigningRooms/Comments
Allows a SigningRoom admin or a client admin to add a new comment to the SigningRoom.
Request Information
URI Parameters
None.
Body Parameters
The new SigningRoom comment model.
ESignSystems.SmartSAFE.Models.Signing.SigningRoomCommentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SigningRoomCommentId |
Gets or sets the SigningRoom comment identifier. |
integer |
None. |
| SigningRoomId |
Gets or sets the SigningRoom identifier. |
integer |
Required |
| UserId |
Gets or sets the user identifier. |
integer |
None. |
| UserName |
Gets or sets the user name of the user who created the comment. |
string |
None. |
| FirstName |
Gets or sets the first name of the user who created the comment. |
string |
None. |
| LastName |
Gets or sets the last name of the user who created the comment. |
string |
None. |
| Comment |
Gets or sets the comment. |
string |
Required Max length: 512 |
| CommentDate |
Gets or sets the date and time that the comment was created. |
date |
None. |
| FullName |
Gets the full name of the user who created the comment. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"SigningRoomCommentId": 1,
"SigningRoomId": 1,
"UserId": 1,
"UserName": "sample string 1",
"FirstName": "sample string 2",
"LastName": "sample string 3",
"Comment": "sample string 4",
"CommentDate": "2026-01-01T17:29:51.8765641-05:00",
"FullName": "sample string 2 sample string 3"
}
application/xml, text/xml
Sample:
<SigningRoomCommentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing"> <Comment>sample string 4</Comment> <CommentDate>2026-01-01T17:29:51.8765641-05:00</CommentDate> <FirstName>sample string 2</FirstName> <LastName>sample string 3</LastName> <SigningRoomCommentId>1</SigningRoomCommentId> <SigningRoomId>1</SigningRoomId> <UserId>1</UserId> <UserName>sample string 1</UserName> </SigningRoomCommentModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
System.Web.Http.IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.