GET api/SigningRoomManager/SigningRooms/{signingRoomId}/Comments

Allows a SigningRoom admin or a client admin to get all comments on the SigningRoom.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
signingRoomId

The SigningRoom identifier.

integer

Required

Body Parameters

None.

Response Information

Resource Description

A list of the SigningRoom's comments.

Collection of ESignSystems.SmartSAFE.Models.Signing.SigningRoomCommentModel
NameDescriptionTypeAdditional 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

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:32:50.6260106-05:00",
    "FullName": "sample string 2 sample string 3"
  },
  {
    "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:32:50.6260106-05:00",
    "FullName": "sample string 2 sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfSigningRoomCommentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing">
  <SigningRoomCommentModel>
    <Comment>sample string 4</Comment>
    <CommentDate>2026-01-01T17:32:50.6260106-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>
  <SigningRoomCommentModel>
    <Comment>sample string 4</Comment>
    <CommentDate>2026-01-01T17:32:50.6260106-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>
</ArrayOfSigningRoomCommentModel>