Authentication
Browser Sessions
Environments
Workflows
- POSTCreate a new workflow
- POSTExecute a workflow
- POSTExecute a workflow synchronously
- POSTList workflows
- POSTGet workflow
- POSTUpdate workflow blocks
- POSTSet workflow parameter schema
- POSTCreate workflow schedule
- POSTList workflow schedules
- POSTDelete workflow schedule
- POSTUpdate workflow schedule
- POSTDuplicate workflow
- POSTDelete workflow
Instructor
API Reference
List instructor executions
Lists all instructor executions for the authenticated organization
POST
/
instructor
/
executions
/
list
List instructor executions
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/instructor/executions/list
Copy
Ask AI
{
"instructorExecutions": [
{
"id": "<string>",
"workflow": {
"id": "<string>",
"name": "<string>"
},
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"authentications": [
{
"id": "<string>",
"sessionId": "<string>",
"browserSessionId": "<string>",
"status": "<string>",
"liveViewUrl": "<string>"
}
],
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"durationMs": 123,
"status": "<string>",
"browserSessionId": null,
"liveViewUrl": null
}
],
"total": 123
}
Response
200
application/json
Executions retrieved successfully
The response is of type object
.
List instructor executions
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/instructor/executions/list
Copy
Ask AI
{
"instructorExecutions": [
{
"id": "<string>",
"workflow": {
"id": "<string>",
"name": "<string>"
},
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"authentications": [
{
"id": "<string>",
"sessionId": "<string>",
"browserSessionId": "<string>",
"status": "<string>",
"liveViewUrl": "<string>"
}
],
"startTime": "2023-11-07T05:31:56Z",
"endTime": "2023-11-07T05:31:56Z",
"durationMs": 123,
"status": "<string>",
"browserSessionId": null,
"liveViewUrl": null
}
],
"total": 123
}
Assistant
Responses are generated using AI and may contain mistakes.