Last updated 24 days ago
The identifier of the user whose sessions are to be listed.
OK
const response = await fetch('yourpodURL.symphony.com/pod/v1/users/{uid}/sessions', { method: 'GET', headers: { "sessionToken": "text" }, }); const data = await response.json();
{ "sessions": [ { "sessionId": "text", "clientIp": "text", "userId": 0, "userAgent": "text", "browser": "text", "os": "text", "device": "text", "deviceHash": "text", "creationTime": 0, "expirationDelay": 0 } ] }