Skip to main content
POST
/
executions
/
batches
/
generateDownload
Generate batch download
curl --request POST \
  --url https://api.kaizenautomation.com/executions/batches/generateDownload \
  --header 'Content-Type: application/json' \
  --data '{
  "batchId": "batch_123"
}'
{
  "success": true,
  "message": "Batch download generation started"
}

Body

application/json
batchId
string
required

ID of the execution batch to generate download for

Example:

"batch_123"

Response

Batch download generation started successfully

success
boolean
required

Whether the download generation was started successfully

Example:

true

message
string
required

Status message

Example:

"Batch download generation started"

I