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"
}
Creates a batch execution with multiple workflow executions
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"
}
Batch execution started successfully
The response is of type object
.