curl --request POST \
--url https://api.kaizenautomation.com/workflows/executeBatch \
--header 'Content-Type: application/json' \
--data '
{
"name": "Monthly Report Generation",
"executions": [
{
"workflowId": "<string>",
"params": {
"origin": "New York",
"destination": "Los Angeles"
},
"loginId": "<string>",
"name": "User batch execution",
"timeout": 10800,
"useProxy": false,
"startBlockId": "1",
"isTest": false
}
]
}
'