ReviewDocumentRequestResponseRequest
Request DTO for reviewing (accepting or rejecting) a document request response
Properties
| Name | Type | Description |
|---|---|---|
| accepted | boolean | Whether to accept the submission. If false, NextAction determines what happens. |
Whether to accept the submission. If false, NextAction determines what happens. | ||
| reviewNote | string | Note from the reviewer explaining the decision |
Note from the reviewer explaining the decision | ||
| nextAction | enum | Reopen ReopenClearDocs |
Reopen ReopenClearDocs | ||
| makeDocumentsAvailable | boolean | When accepting, whether to publish the request's documents to the main Documents list. |
When accepting, whether to publish the request's documents to the main Documents list. | ||
JSON Example
{
"accepted": false,
"reviewNote": "string",
"nextAction": "Reopen",
"makeDocumentsAvailable": false
}