---
title: "Execute multiple workflows in a batch"
method: POST
path: "/workflows/executeBatch"
tags: ["Workflows"]
---

# Execute multiple workflows in a batch

`POST /workflows/executeBatch`

Creates a batch execution with multiple workflow executions

## Request body

- object
  - `name` string, required — Name for the execution batch
  - `executions` object[], required — Array of workflow execution parameters. Each execution must specify its own workflowId.
    - `workflowId` string — ID of the workflow to execute. Either workflowId or workflowName must be provided.
    - `workflowName` string — Name of the workflow to execute. If provided, the workflow will be looked up by name within the organization. Either workflowId or workflowName must be provided.
    - `loginId` string — ID of the login to use for authentication
    - `params` object, required — Runtime parameters for the workflow execution
    - `name` union — Optional name for the execution (string or number, automatically converted to string)
      - string
      - number
    - `timeout` integer — Optional timeout in seconds for the execution (defaults to 10800 seconds / 3 hours)
    - `useProxy` boolean — Whether to use a proxy for this execution
    - `startBlockId` string — Optional ID of the block to start execution from
    - `isTest` boolean — Whether this execution is a test run
    - `agentConversationThreadId` string — Optional ID of an agent conversation thread to associate with this execution (used when duplicating executions that were triggered by an agent)

## Response `200`

Batch execution started successfully

- object
  - `batchId` string, required — ID of the created execution batch
  - `executionIds` string[], required — Array of created execution IDs
  - `message` string, required — Success message

## Other responses

- `400` — Invalid request parameters
- `500` — Server error

---

[API](https://skmtc.dev/kaizenautomation/apis/kaizen-api.md) · [All operations](https://skmtc.dev/kaizenautomation/apis/kaizen-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kaizenautomation/kaizen-api/revisions/4aa3664ceff2/schema)
