Authentication
Browser Sessions
Workflows
Instructor
API Reference
Stop instructor session
Stops an instructor session for a workflow and login
POST
/
instructor
/
executions
/
stop
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/instructor/executions/stop \
--header 'Content-Type: application/json' \
--data '{
"instructorExecutionId": "<string>"
}'
Copy
Ask AI
{
"instructorExecutionId": "<string>",
"workflow": {
"id": "<string>",
"name": "<string>"
},
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"authentications": [
{
"id": "<string>",
"executionDispatchId": "<string>",
"browserSessionId": "<string>",
"status": "<string>",
"liveViewUrl": "<string>"
}
],
"status": "<string>",
"browserSessionId": null,
"liveViewUrl": null
}
Body
application/json
Response
200
application/json
Instructor session stopped successfully
The response is of type object
.
The response is of type object
.
The response is of type object
.
The response is of type object
.
Copy
Ask AI
curl --request POST \
--url https://api.kaizenautomation.com/instructor/executions/stop \
--header 'Content-Type: application/json' \
--data '{
"instructorExecutionId": "<string>"
}'
Copy
Ask AI
{
"instructorExecutionId": "<string>",
"workflow": {
"id": "<string>",
"name": "<string>"
},
"logins": [
{
"id": "<string>",
"name": "<string>"
}
],
"authentications": [
{
"id": "<string>",
"executionDispatchId": "<string>",
"browserSessionId": "<string>",
"status": "<string>",
"liveViewUrl": "<string>"
}
],
"status": "<string>",
"browserSessionId": null,
"liveViewUrl": null
}
Assistant
Responses are generated using AI and may contain mistakes.