POST
/
workflows
/
executeBatch
Execute multiple workflows in a batch
curl --request POST \
  --url https://api.kaizenautomation.com/workflows/executeBatch \
  --header 'Content-Type: application/json' \
  --data '{
  "workflowId": "workflow_123",
  "name": "Monthly Report Generation",
  "executions": [
    {
      "loginId": "<string>",
      "params": {
        "origin": "New York",
        "destination": "Los Angeles"
      },
      "name": "User batch execution",
      "timeout": 1800,
      "useProxy": false,
      "startBlockId": "1"
    }
  ]
}'
{
  "batchId": "batch_123",
  "executionIds": [
    "<string>"
  ],
  "message": "Batch execution started successfully"
}

Body

application/json

Response

200
application/json

Batch execution started successfully

The response is of type object.