Started sessions
To see how many sessions each unique participant (tracked by browser uuid) has started -> execute a GET request against /statistics/participants/started-sessions.
Request
curl --request GET \
--url https://api.digitalsamba.com/api/v1/statistics/participants/started-sessions \
--user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY
Response (200 OK)
{
"total_count": 545,
"data": [
{
"browser_id": "57f516f8-6ca4-4fda-a528-7b86a4a9fc4d",
"sessions_started": 2088
},
...............
]
}
Last updated