API Docs / Schemas / DocumentUploadBatchResultDto

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
resultsarray 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": "..."
    }
  ]
}

Used By Operations