Skip to main content

Stats

This endpoint provides access to your meeting stats.

caution

This route needs to be authenticated, see Authentication here

Endpoint

GET https://nodeapi.superviz.com/meetingstats

Query Parameters

NameTypeDescriptionFormatRequired
monthNumberFilter month05
yearNumberFilter year2020

Returns

NameTypeDescription
totalMeetingsNumberNumber of meetings
totalMeetingMinutesNumberMeeting Duration
totalRecordingMinutesNumberRecording duration

Responses

200 OK

{
"totalMeetingMinutes": 2831,
"totalRecordingMinutes": 1,
"totalMeetings": 157
}

401 Unauthorized

{
"statusCode": 401,
"message": "Unauthorized"
}

401 Unauthorized (Authenticated is not developer)

{
"statusCode": 401,
"message": "You need to be a developer to access meeting stats.",
"error": "Unauthorized"
}