Documentation Index

Fetch the complete documentation index at: https://help.docfusioncloud.com/llms.txt

Use this file to discover all available pages before exploring further.

[Put] Retry Processing of Batch Record

Prev Next

PUT  /api/DocBatch/RetryProcessBatchRecord

Required User-Role: BatchCreator

Retries the processing of a batch record after the data was updated using /api/DocBatch/UpdateBatchRecordData. The method can also be executed on batch records that are in the error state to resolve transient errors and continue processing of the batch.

   

Request

PUT /api/DocBatch/RetryProcessBatchRecord?tenantGuid={tenantGuid}&batchGuid={batchGuid}&batchRecordId={batchRecordId}
content-type: application/json
authorization: Bearer {token}

See Authentication for more about bearer tokens.

   

Query Parameters

tenantGuid (string($uuid)) Required 
Unique Guid of the batch tenant associated to the batch.

batchGuid (string($uuid)) Required
Unique Guid of the batch that contains the batch record.

batchRecordId (integer($int64)) Required 
Record identifier of the batch record to retry.

   

Response

200  Returns the success state or an error description.

{
  "isSuccess": true,
  "error": "string"
}

Error Codes

HTTP

401 Unauthorized

403 Forbidden