curl --request POST \
--url https://api.kaizenautomation.com/workflows/execute \
--header 'Content-Type: application/json' \
--data '{
"workflowId": "<string>",
"loginId": "<string>",
"params": {
"origin": "New York",
"destination": "Los Angeles"
},
"timeout": 1800,
"useProxy": false,
"startBlockId": "1"
}'
{
"executionId": "1",
"status": "Processing",
"message": "Workflow execution started successfully"
}
Executes a workflow with the specified login and parameters
curl --request POST \
--url https://api.kaizenautomation.com/workflows/execute \
--header 'Content-Type: application/json' \
--data '{
"workflowId": "<string>",
"loginId": "<string>",
"params": {
"origin": "New York",
"destination": "Los Angeles"
},
"timeout": 1800,
"useProxy": false,
"startBlockId": "1"
}'
{
"executionId": "1",
"status": "Processing",
"message": "Workflow execution started successfully"
}
Workflow execution started successfully
The response is of type object
.