DocumentUploadBatchResultDto
The result of a batch document upload. Files are uploaded independently, so a batch
can contain a mix of successes and failures.
Properties
| Name | Type | Description |
|---|---|---|
| results | array of DocumentUploadResultDto | One entry per file uploaded, in the order they were submitted. |
One entry per file uploaded, in the order they were submitted. | ||
JSON Example
{
"results": [
{
"fileName": "...",
"success": "...",
"document": "...",
"error": "..."
}
]
}