RequestClientApprovalForDocumentsResultDto
The result of a multi-document approval request. In Individual mode each document is sent
independently, so the results can contain a mix of successes and failures; in Batch mode the
request is all-or-nothing and every result succeeds.
Properties
| Name | Type | Description |
|---|---|---|
| batchCode | string | The code of the approval batch that was created. Null in Individual mode. |
The code of the approval batch that was created. Null in Individual mode. | ||
| 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
{
"batchCode": "string",
"results": [
{
"code": "...",
"success": "...",
"error": "..."
}
]
}