Skip to main content
Skip table of contents

Batch Status

Gets batch status with given ID.

Batch status is available 24 hours from posting the batch.

URI

GET: /v1/batch/:batchId

Success response

Successful request will return status code 200 (OK).

Response JSON properties

postDateTime: date and time when batch was posted.

completed : true if batch has been completed i.e. all batch tasks have been processed with errors or not.

completedDateTime: date and time when batch was completed.

errors: true if batch contains errors (batch processing error or error in batch task)

statusMessage: textual presentation of current status: “Waiting”, “Started”, “Completed”, error message

tasks: batch tasks.

task.id : task ID.

task.completed: true if task is completed.

task.errors: true if task produced errors.

CODE
GET: https://dynamo-api.documill.com/v1/batch/23482374
{
  "postDateTime" : "datetime",
  "completed" : true,
  "completedDateTime" : "datetime",
  "errors" : false,
  "statusMessage" : "Completed"
  "tasks": [
    {
      "id" : "taskid",
      "completed" : true,
      "errors" : false,
    }
  ]
}
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.