POST
/
instructor
/
executeSync
Create instructor session (synchronous)
curl --request POST \
  --url https://api.kaizenautomation.com/instructor/executeSync \
  --header 'Content-Type: application/json' \
  --data '{
  "workflowId": "<string>",
  "loginId": "<string>"
}'
{
  "id": "<string>",
  "workflow": {
    "id": "<string>",
    "name": "<string>"
  },
  "logins": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "authentications": [
    {
      "id": "<string>",
      "sessionId": "<string>",
      "browserSessionId": "<string>",
      "status": "<string>",
      "liveViewUrl": "<string>"
    }
  ],
  "status": "<string>",
  "browserSessionId": "<string>",
  "liveViewUrl": "<string>"
}

Body

application/json

Response

200
application/json

Instructor session created and is in progress or completed

The response is of type object.