Retrieve the event log for a specific session
Developer Resources
Getting Session Events
Get the chronological list of user events recorded during a specific session
GET
Retrieve the event log for a specific session
Authorizations
Use your secret API key as the bearer token
Path Parameters
The unique session identifier (from window.getRoundtableSessionId())
Response
200 - application/json
Session events retrieved successfully
Unique identifier for the session
Example:
"abc123def456"
Total number of events recorded during the session
Example:
3
Chronological list of user events recorded during the session
Example:
[
{
"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
}
]
