curl --request POST \
--url https://api.kaizenautomation.com/sessions/takeover/end \
--header 'Content-Type: application/json' \
--data '{
"sessionId": 123
}'
{
"success": true,
"message": "<string>",
"data": {
"id": 123,
"sessionId": 123,
"startedAt": "2023-11-07T05:31:56Z",
"endedAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z"
}
}
Ends a manual takeover session and returns control
curl --request POST \
--url https://api.kaizenautomation.com/sessions/takeover/end \
--header 'Content-Type: application/json' \
--data '{
"sessionId": 123
}'
{
"success": true,
"message": "<string>",
"data": {
"id": 123,
"sessionId": 123,
"startedAt": "2023-11-07T05:31:56Z",
"endedAt": "2023-11-07T05:31:56Z",
"expiresAt": "2023-11-07T05:31:56Z"
}
}
Session takeover ended successfully
The response is of type object
.