Skip to main content

stop_sessid

stop_sessid

This call will disconnect sessions with matching session ID. The session ID can be retrieved using the trigger USER_NEW, where it is part of the payload.

A disconnected session will kill any currently open connections, and, if the trigger USER_NEW is in use, prevent new connections from opening for at least ten seconds.

This call has several forms, and is requested as follows:

//Either...
{
"stop_sessid": "session ID here" //Given session is stopped
}
//Or...
{
"stop_sessid": [
"session ID here", //Given session is stopped
//Multiple sessions may be stopped simultaneously
]
}

There is no response to this call.