DocumentBulkActionResultDto
The result of a bulk document action. Documents are handled independently, so a batch
can contain a mix of successes and failures.
Properties
| Name | Type | Description |
|---|---|---|
| results | array of DocumentActionResultDto | One entry per document code submitted, in the order they were sent. |
One entry per document code submitted, in the order they were sent. | ||
JSON Example
{
"results": [
{
"code": "...",
"success": "...",
"error": "..."
}
]
}