Workflows
Execute multiple workflows in a batch
Creates a batch execution with multiple workflow executions
post/workflows/executeBatch
Request body
Example request
{
"name": "Monthly Report Generation",
"executions": [
{
"params": {
"origin": "New York",
"destination": "Los Angeles"
},
"timeout": 10800,
"startBlockId": "1"
}
]
}Response
Batch execution started successfully
Example response
{
"batchId": "batch_123",
"message": "Batch execution started successfully"
}