POST
/
executions
/
batches
/
get
Get batch statistics
curl --request POST \
  --url https://api.kaizenautomation.com/executions/batches/get \
  --header 'Content-Type: application/json' \
  --data '{
  "batchId": "<string>"
}'
{
  "statistics": {
    "total": 123,
    "completed": 123,
    "failed": 123,
    "inProgress": 123,
    "executionDownloadsCreated": 123,
    "executionDownloadsFinished": 123
  },
  "batchDownload": {
    "status": "<string>"
  }
}

Body

application/json

Request to get a specific batch

Response

200
application/json

Batch statistics retrieved successfully

Batch response