GET api/SigningRoomManager/Documents/{documentId}/Reviewers
Gets a list of document reviewers for the specified document id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| documentId |
Document id. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
List of document reviewers.
Collection of ESignSystems.SmartSAFE.Models.SigningRoomManager.DocumentReviewerModel| Name | Description | Type | Additional information |
|---|---|---|---|
| DocumentReviewerId |
Gets or sets the DocumentReviewerId. |
integer |
None. |
| DocumentId |
Gets or sets the DocumentId. |
integer |
Required |
| ParticipantId |
Gets or sets the ParticipantId. |
integer |
Required |
| ReviewedByUserId |
Gets or sets the ReviewedByUserId. |
integer |
None. |
| LastReviewedDate |
Gets or sets the LastReviewedDate. |
date |
None. |
| RequiresReview |
Gets or sets a value indicating if the document must be reviewed. |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"DocumentReviewerId": 1,
"DocumentId": 1,
"ParticipantId": 1,
"ReviewedByUserId": 1,
"LastReviewedDate": "2026-01-01T17:30:28.4643459-05:00",
"RequiresReview": true
},
{
"DocumentReviewerId": 1,
"DocumentId": 1,
"ParticipantId": 1,
"ReviewedByUserId": 1,
"LastReviewedDate": "2026-01-01T17:30:28.4643459-05:00",
"RequiresReview": true
}
]
application/xml, text/xml
Sample:
<ArrayOfDocumentReviewerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SigningRoomManager">
<DocumentReviewerModel>
<DocumentId>1</DocumentId>
<DocumentReviewerId>1</DocumentReviewerId>
<LastReviewedDate>2026-01-01T17:30:28.4643459-05:00</LastReviewedDate>
<ParticipantId>1</ParticipantId>
<RequiresReview>true</RequiresReview>
<ReviewedByUserId>1</ReviewedByUserId>
</DocumentReviewerModel>
<DocumentReviewerModel>
<DocumentId>1</DocumentId>
<DocumentReviewerId>1</DocumentReviewerId>
<LastReviewedDate>2026-01-01T17:30:28.4643459-05:00</LastReviewedDate>
<ParticipantId>1</ParticipantId>
<RequiresReview>true</RequiresReview>
<ReviewedByUserId>1</ReviewedByUserId>
</DocumentReviewerModel>
</ArrayOfDocumentReviewerModel>