Disconnect by Session ID API
POST /disconnectBySessionId
Description
This API endpoint allows an admin to disconnect a user session by providing the session's unique identifier. This operation is useful for terminating a specific session that may be unauthorized or needs to be closed for other reasons.
Request Body
The request utilizes GraphQL to perform the disconnectBySessionId
mutation.
Mutation:
mutation disconnectBySessionId ($onlineSessionId: String!) {
disconnectBySessionId (onlineSessionId: $onlineSessionId)
}