Workflows

Execute multiple workflows in a batch

Creates a batch execution with multiple workflow executions

post/workflows/executeBatch

Request body

namestring required

Name for the execution batch

Example request

{
  "name": "Monthly Report Generation",
  "executions": [
    {
      "params": {
        "origin": "New York",
        "destination": "Los Angeles"
      },
      "timeout": 10800,
      "startBlockId": "1"
    }
  ]
}

Response

Batch execution started successfully

batchIdstring required

ID of the created execution batch

executionIdsstring[] required

Array of created execution IDs

messagestring required

Success message

Example response

{
  "batchId": "batch_123",
  "message": "Batch execution started successfully"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.