Get full event timeline for a single RUM session.
GET
/rum/{app_id}/sessions/{session_id}
const url = 'https://api.siteqwality.com/rum/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/sessions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.siteqwality.com/rum/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/sessions/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” app_id
required
string format: uuid
RUM application identifier
session_id
required
string format: uuid
Session identifier
Responses
Section titled “ Responses ”Session detail
Media type application/json
object
session
required
object
session_id
required
string
user_id
string | null
user_email
string | null
browser
required
string
os
required
string
country
required
string
device_type
required
string
first_seen
required
string
last_seen
required
string
view_count
required
integer format: int64
error_count
required
integer format: int64
has_replay
required
boolean
events
required
Array<object>
object
event_id
required
string
session_id
required
string
view_id
required
string
timestamp
required
string
type
required
string
url
required
string
resource_type
string | null
resource_url
string | null
duration_ms
number | null format: double
transfer_size
integer | null format: int64
error_message
string | null
error_source
string | null
error_stack
string | null
error_fingerprint
string | null
action_type
string | null
action_target
string | null
frustration
string | null
long_task_duration_ms
number | null format: double
user_id
string | null
user_email
string | null
Example generated
{ "session": { "session_id": "example", "user_id": "example", "user_email": "example", "browser": "example", "os": "example", "country": "example", "device_type": "example", "first_seen": "example", "last_seen": "example", "view_count": 1, "error_count": 1, "has_replay": true }, "events": [ { "event_id": "example", "session_id": "example", "view_id": "example", "timestamp": "example", "type": "example", "url": "example", "resource_type": "example", "resource_url": "example", "duration_ms": 1, "transfer_size": 1, "error_message": "example", "error_source": "example", "error_stack": "example", "error_fingerprint": "example", "action_type": "example", "action_target": "example", "frustration": "example", "long_task_duration_ms": 1, "user_id": "example", "user_email": "example" } ]}Missing or invalid authentication
Session not found
Internal server error