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://api.superviz.com/meetings/summary \
--header "client_id: ${YOUR CLIENT_ID}" \
--header "secret: ${YOUR SECRET}"
HTTP Request
GET /meetings/summary
Headers
When using this endpoint, you need to provide the API Key. The following headers are required:
Name | Description |
---|---|
client_id | Required. You need to use the Client ID to authenticate in this repository. You can retrieve your Client ID under the Dashboard > Developer > Keys. |
secret | Required. You need to use the Secret Key to authenticate in this repository. You can create a new API Secret under our Dashboard > Developer > Keys. |
Response
Status code 200 will indicate that the request was successful. The response will be in JSON format and include the following fields:
Name | Type | Description |
---|---|---|
totalMeetingMinutes | number | This field contains the total number of minutes of all the meetings that have taken place. |
totalRecordingMinutes | number | This field contains the total number of minutes of all the recordings that have been made. |
totalMeetings | number | This field contains the total number of meetings that have taken place. |
Example:
{
"totalMeetingMinutes": 30387,
"totalRecordingMinutes": 1,
"totalMeetings": 671
}