Executions
List executions
Authentication
Workflows
API Reference
List executions
Retrieves all executions for the current organization with optional filtering
POST
/
executions
/
list
curl --request POST \
--url https://api.kaizenautomation.com/executions/list
{
"executions": [
{
"id": "<string>",
"workflow": {
"id": "<string>",
"name": "<string>"
},
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"organizationId": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"params": {},
"status": "InProgress",
"liveViewUrl": "<string>"
}
],
"total": 123
}
Response
200
application/json
Executions retrieved successfully
List of executions
Recording of a workflow execution
Unique identifier for the execution
ID of the organization this execution belongs to
When the execution started
Available options:
InProgress
URL for live view of the execution
Total number of executions matching the filter criteria
curl --request POST \
--url https://api.kaizenautomation.com/executions/list
{
"executions": [
{
"id": "<string>",
"workflow": {
"id": "<string>",
"name": "<string>"
},
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"organizationId": "<string>",
"startTime": "2023-11-07T05:31:56Z",
"params": {},
"status": "InProgress",
"liveViewUrl": "<string>"
}
],
"total": 123
}