CreateDocumentRequestRequest
Request DTO for creating a new document request
Properties
| Name | Type | Description |
|---|---|---|
| title | string | Title describing what documents are needed |
Title describing what documents are needed | ||
| status | enum | Draft Open Submitted Accepted Rejected |
Draft Open Submitted Accepted Rejected | ||
| description | string | Detailed description of what is needed |
Detailed description of what is needed | ||
| deadline | string | Optional deadline for the client to respond by |
Optional deadline for the client to respond by | ||
| notifyUserCode | string | Code of the user to notify when a submission is made |
Code of the user to notify when a submission is made | ||
JSON Example
{
"title": "string",
"status": "Draft",
"description": "string",
"deadline": "2024-01-01",
"notifyUserCode": "string"
}