Skip to main content

Get meetings stats summary

This endpoint enables you to get a summary of the meetings that have taken place. The response will include the total number of meetings as well as the recorded and total minutes of all the meetings that have taken place.

How to use

You can use the following cURL to obtain a response from this endpoint:


curl --request GET \
--url https://nodeapi.superviz.com/meetings/summary \
--header 'apiKey: API_KEY' \

HTTP Request

GET /meetings/summary

Headers

When using this endpoint, you need to provide the API Key. The following headers are required:

NameDescription
apikeyRequired. You must utilize the Developer Token that can be found on the developer page. By utilizing this key, we will define whether to get data from the developer or the production environment.

Response

Status code 200 will indicate that the request was successful. The response will be in JSON format and include the following fields:

NameTypeDescription
totalMeetingMinutesnumberThis field contains the total number of minutes of all the meetings that have taken place.
totalRecordingMinutesnumberThis field contains the total number of minutes of all the recordings that have been made.
totalMeetingsnumberThis field contains the total number of meetings that have taken place.

Example:

{
"totalMeetingMinutes": 30387,
"totalRecordingMinutes": 1,
"totalMeetings": 671
}