Current period
To see the statistics for your current subscription period -> execute a GET request against the /statistics/current endpoint.
Request
curl --request GET \
--url https://api.digitalsamba.com/api/v1/statistics/current \
--user YOUR_TEAM_ID:YOUR_DEVELOPER_KEY
Response (200 OK)
{
"participation_minutes": 1861,
"live_sessions": 6,
"live_participants": 30,
"active_recorders": 4,
"recorded_minutes": 200,
"captions_minutes": 6,
"stored_recorded_minutes": 257,
"max_active_participants": 120,
"max_active_sessions": 10,
"date_start": "2024-02-17", --start of current subscription period
"date_end": "2024-03-16" --end of current subscription period
}
Last updated