POST api/Signing/SigningRooms/Comments
Allows the current signer user to add a SigningRoom comment to the SigningRoom. The current user must be a participant in the specified SigningRoom.
Request Information
URI Parameters
None.
Body Parameters
The SigningRoom comment to add.
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
{
"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.8296569-05:00",
"FullName": "sample string 2 sample string 3"
}
application/xml, text/xml
<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.8296569-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 not available.
Response Information
Resource Description
The added SigningRoom comment.
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. |
Response Formats
application/json, text/json
{
"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.8453229-05:00",
"FullName": "sample string 2 sample string 3"
}
application/xml, text/xml
<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.8453229-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>