API Docs / Schemas / RequestClientApprovalForDocumentsResultDto

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
batchCodestring

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.

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

Used By Operations