POST api/SigningRoomManager/Documents/{documentId}/Reviewers
Saves the document reviewer.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| documentId | string |
None. |
Body Parameters
The document reviewer to save.
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. |
Request Formats
application/json, text/json
Sample:
{
"DocumentReviewerId": 1,
"DocumentId": 1,
"ParticipantId": 1,
"ReviewedByUserId": 1,
"LastReviewedDate": "2026-01-01T17:30:28.5112115-05:00",
"RequiresReview": true
}
application/xml, text/xml
Sample:
<DocumentReviewerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.SigningRoomManager"> <DocumentId>1</DocumentId> <DocumentReviewerId>1</DocumentReviewerId> <LastReviewedDate>2026-01-01T17:30:28.5112115-05:00</LastReviewedDate> <ParticipantId>1</ParticipantId> <RequiresReview>true</RequiresReview> <ReviewedByUserId>1</ReviewedByUserId> </DocumentReviewerModel>
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.