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 &quot;Authorization: Bearer &lt;ACCESS_TOKEN&gt;&quot; https://{{base-domain}}/rec/archive/download/xyz

Scopes: recording:read:admin,recording:read

Rate Limit Label: Medium

Request Params

KeyDatatypeRequiredDescription
page_sizenumberThe number of records returned within a single API call.
next_page_tokenstringUse 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.
fromstringThe 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.
tostringThe end date for the monthly range to query. The maximum range can be a month.
typestringThe type of analytics details:
  • by_view &mdash; by_view.
  • by_download &mdash; by_download. |

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{&quot;from&quot;:&quot;\u003cdate\u003e&quot;,&quot;to&quot;:&quot;\u003cdate\u003e&quot;,&quot;next_page_token&quot;:&quot;\u003cstring\u003e&quot;,&quot;page_size&quot;:&quot;\u003cinteger\u003e&quot;,&quot;total_records&quot;:&quot;\u003cinteger\u003e&quot;,&quot;analytics_details&quot;:[{&quot;date_time&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;email&quot;:&quot;\u003cstring\u003e&quot;,&quot;duration&quot;:&quot;\u003cinteger\u003e&quot;},{&quot;date_time&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;name&quot;:&quot;\u003cstring\u003e&quot;,&quot;email&quot;:&quot;\u003cstring\u003e&quot;,&quot;duration&quot;:&quot;\u003cinteger\u003e&quot;}]}