List Sessions

Lists all sessions for the user identified by {uid}.

get
Path parameters
uidstringRequired

The identifier of the user whose sessions are to be listed.

Header parameters
sessionTokenstringRequired

Session authentication token.

Responses
200
OK
application/json
get
GET /pod/v1/users/{uid}/sessions HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Accept: */*
{
  "sessions": [
    {
      "sessionId": "text",
      "clientIp": "text",
      "userId": 1,
      "userAgent": "text",
      "browser": "text",
      "os": "text",
      "device": "text",
      "deviceHash": "text",
      "creationTime": 1,
      "expirationDelay": 1
    }
  ]
}

Last updated

Was this helpful?