Logo
Zoom Public API Documentation

Get sharing/recording details

GET {{baseUrl}}/videosdk/sessions/:sessionId/users/sharing?type=live&page_size=30&next_page_token=Usse957pzxvmYwlmCZ50a6CNXFrhztxuj82

Retrieve the sharing and recording details of participants from live or past sessions.
Rate Limit Label: Heavy
Prerequisites:
* A Video SDK Account.

 

Body PARAM

Key Datatype Required Description 
type
string The session types: * `past` — A past session. * `live` — A live session. This value defaults to `live`.
page_size
number The number of records returned within a single API call.
next_page_token
string The next page token is used to paginate through large result sets. A next page token will be returned whenever the set of available results exceeds the current page size. The expiration period for this token is 15 minutes.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "page_size": 5, "next_page_token": "1cyhUewZa419P9F8QUYURck0U3rFWB0d1H2", "users": [ { "id": "1670000000", "name": "User", "details": [ { "content": "desktop", "start_time": "2021-06-17T06:49:06Z", "end_time": "2021-06-17T06:49:35Z" }, { "content": "desktop", "start_time": "2021-06-17T06:49:06Z", "end_time": "2021-06-17T06:49:35Z" } ] }, { "id": "1670000000", "name": "User", "details": [ { "content": "desktop", "start_time": "2021-06-17T06:49:06Z", "end_time": "2021-06-17T06:49:35Z" }, { "content": "desktop", "start_time": "2021-06-17T06:49:06Z", "end_time": "2021-06-17T06:49:35Z" } ] } ] }



Curl
curl -X GET 'https://api.zoom.us/v2/videosdk/sessions/:sessionId/users/sharing?type=live&page_size=30&next_page_token=Usse957pzxvmYwlmCZ50a6CNXFrhztxuj82?type=live&page_size=30&next_page_token=Usse957pzxvmYwlmCZ50a6CNXFrhztxuj82' -H 'Accept: application/json'

ENDPOINTS