Room
To see the statistics for a concrete room -> execute a GET request against /rooms/:id/statistics
To see the statistics only for the current billing period -> execute a GET request against /rooms/:id/statistics/current endpoint instead.
Request
curl --request GET \
--url https://api.digitalsamba.com/api/v1/rooms/87a5d383-9e79-44ea-b382-686e430f4ecc/statistics \
--user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY
Response (200 OK)
{
"room_id": "8707051e-22e1-4140-adce-334a3a4be3e0",
"room_external_id": null,
"room_description": null,
"room_friendly_url": "EasySpanish",
"room_privacy": "public",
"room_source": "dashboard",
"room_max_participants": 100,
"room_is_deleted": false,
"participation_minutes": 73,
"desktop_participation_minutes": 73,
"mobile_participation_minutes": 0,
"tablet_participation_minutes": 0,
"smarttv_participation_minutes": 0,
"broadcasted_minutes": 43,
"subscribed_minutes": 62,
"screen_broadcasted_minutes": 0,
"screen_subscribed_minutes": 0,
"live_participants": 0,
"active_participants": 2,
"desktop_participants": 2,
"mobile_participants": 0,
"tablet_participants": 0,
"smarttv_participants": 0,
"sessions": 1,
"max_concurrent_participants": 4,
"e2ee_minutes": 0,
"recorded_minutes": 0,
"stored_recorded_minutes": 0,
"whiteboard_minutes": 0,
"active_roles": 2,
"breakout_minutes": 0,
"presentation_minutes": 0,
"public_chat_posts": 0,
"questions": 0,
"answers": 0,
"date_start": "2024-03-17",
"date_end": "2024-04-16"
}
Last updated