Skip to content

Get Sessions

Get a list (or subset) of Sessions belonging to an Organization. The maximum searchable date range is thirty-one days.

Verb POST
Endpoint {base-url}/sessions/management/
Max Page Size 50

Request Body

{
  "requestFilter": {
    "organizationIds": [3],
    "startDate": "2022-08-31T20:04:33.623",
    "endDate": "2022-08-31T20:04:33.62"
  },
  "routeFilter": {
    "sessionIds": [1]
  }
}

Filters Honored

Returns

On Success

The requested set of Sessions.

Response Body

[
  {
    "id": 16,
    "machineId": 0,
    "startedAtUtc": "2022-08-31T20:04:33.623",
    "loginId": "example@example.com",
    "reason": null,
    "loginWasSuccessful": true,
    "endedAtUtc": null,
    "wasAbandoned": true,
    "source": "Web",
    "organizationId": 1
  }
]