v1

latestOpenAPI 3.0.02026-07-224019.9 KB

Retrieve the event log for a specific session

Get the chronological list of user events recorded during a specific session

get/v1/sessions/{sessionId}/events

Path parameters

sessionIdstring required

The unique session identifier (from window.getRoundtableSessionId())

Response

Session events retrieved successfully

session_idstring

Unique identifier for the session

event_countinteger

Total number of events recorded during the session

Example response

{
  "session_id": "abc123def456",
  "event_count": 3,
  "events": [
    {
      "action": "Signed in",
      "user_time": "Mar 25, 2025 14:30:45",
      "unix_timestamp": 1743055845000
    },
    {
      "action": "Navigated to /dashboard",
      "user_time": "Mar 25, 2025 14:30:50",
      "unix_timestamp": 1743055850000
    },
    {
      "action": "Clicked \"Update credit card\"",
      "user_time": "Mar 25, 2025 14:32:15",
      "unix_timestamp": 1743055935000
    }
  ]
}