Logo
Zoom Public API Documentation

Get session details

GET {{baseUrl}}/videosdk/sessions/:sessionId?type=live

Use this API to return information about live or past sessions. You can specify a monthly date range for this data using the from and to query parameters. The month should fall within the last six months.

The overview response displays whether features such as audio, video, screensharing, and recording were used during the session.

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`.



HEADERS

Key Datatype Required Description 
Accept
string




RESPONSES

status OK

{ "id": "sfk/aOFJSJSYhGwk1hnxgw==", "session_name": "My session", "start_time": "2021-12-07T05:42:28Z", "end_time": "2021-12-07T05:42:28Z", "duration": "30:00", "user_count": 2, "has_voip": true, "has_video": true, "has_screen_share": true, "has_recording": true, "has_pstn": true, "session_key": "my_session_key" }



Curl
curl -X GET 'https://api.zoom.us/v2/videosdk/sessions/:sessionId?type=live?type=live' -H 'Accept: application/json'

ENDPOINTS