Loading...
Log off user. User must be authenticated first.
Success
Invoke the RAS Admin Session to send the LogOff command for the Admin with specified Session ID.
Session ID of the Admin to be Disconnected.
No Content
const response = await fetch('/api/Session/logoff', { method: 'POST', headers: {}, }); const data = await response.json();
{ "type": "text", "title": "text", "detail": "text", "instance": "text" }
const response = await fetch('/api/Session/{SessionId}/logoff', { method: 'POST', headers: {}, }); const data = await response.json();