Authentication
Browser Sessions
Workflows
Instructor
API Reference
Execute a workflow
Executes a workflow with the specified login and parameters
POST
/
workflows
/
execute
Copy
Ask AI
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
}'
Copy
Ask AI
{
"executionId": "1",
"status": "Processing",
"message": "Workflow execution started successfully"
}
Body
application/json
Response
200
application/json
Workflow execution started successfully
The response is of type object
.
Copy
Ask AI
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
}'
Copy
Ask AI
{
"executionId": "1",
"status": "Processing",
"message": "Workflow execution started successfully"
}
Assistant
Responses are generated using AI and may contain mistakes.