client.signOutAllDevices()
Call this to completely sign out a particular user from all of their open TigerConnect sessions across all devices.
See also client.signOut() to sign out of the current device only.
Definition
client.signOutAllDevices():Promise<void,Error>
Returns
An error will be thrown if the operation is unsuccessful, otherwise null
will be returned.
Examples
await client.signOutAllDevices();console.log('Signed out successfully from all devices');