Get Meeting Recording's Analytics Details
GET {{baseUrl}}/meetings/:meetingId/recordings/analytics_details?page_size=30&next_page_token=<string>&from=<date>&to=<date>&type=by_download
Use this API to return a meeting recording's analytics details . Maximum duration: 1 Month . To access a password-protected cloud recording, send the user's OAuth access token as a Bearer token in the Authorization header. For example,
curl -H "Authorization: Bearer <ACCESS_TOKEN>" https://{{base-domain}}/rec/archive/download/xyz
Scopes:
recording:read:admin
,
recording:read
Rate Limit Label
:
Medium
Request Params
| Key | Datatype | Required | Description |
| page_size
| number | | The number of records returned within a single API call. |
| next_page_token
| string | | Use the next page token to paginate through large result sets. A next page token is returned whenever the set of available results exceeds the current page size. This token's expiration period is 15 minutes. |
| from
| string | | The start date for the monthly range to query. The maximum range can be a month. If you do not provide this value, this defaults to the current date. |
| to
| string | | The end date for the monthly range to query. The maximum range can be a month. |
| type
| string | | The type of analytics details:
by_view
— by_view.by_download
— by_download. |
HEADERS
| Key | Datatype | Required | Description |
| Accept
| string | | |
RESPONSES
status: OK
{"from":"\u003cdate\u003e","to":"\u003cdate\u003e","next_page_token":"\u003cstring\u003e","page_size":"\u003cinteger\u003e","total_records":"\u003cinteger\u003e","analytics_details":[{"date_time":"\u003cdateTime\u003e","name":"\u003cstring\u003e","email":"\u003cstring\u003e","duration":"\u003cinteger\u003e"},{"date_time":"\u003cdateTime\u003e","name":"\u003cstring\u003e","email":"\u003cstring\u003e","duration":"\u003cinteger\u003e"}]}