UNPKG

zoom-video-sdk-api-wrapper

Version:

A convenient wrapper for the Zoom Video SDK API

66 lines (47 loc) 1.14 kB
# Zoom Video SDK API Wrapper This is a convenient wrapper for the Zoom Video SDK API. ## Installation ```bash npm install zoom-video-sdk-api-wrapper ``` ## Usage ```typescript import { createZoomVideoSdkApiClient } from 'zoom-video-sdk-api-wrapper'; const main = async () => { const client = createZoomVideoSdkApiClient({ apiKey: "your-api-key", apiSecret: "your-api-secret", }); const listSessions = await client.listSessions({ from: "2021-09-01", to: "2021-09-30", }); console.log(listSessions); }; main(); ``` ## API ### CloudRecordings * deleteSessiion_sRecordingFile * deleteSessiion_sRecordings * listRecordingsOfAnAccount * listSession_sRecordings * recoverASingleRecording * recoverSession_sRecordings ### Sessions * getSessionDetails * getSessionLiveStreamDetails * getSessionUserQos * getSharingRecordingDetails * listSessionUsers * listSessionUsersQoS * listSessions ### VideoSDKReports * getCloudRecordingUsageReport * getDailyUsageReport * getOperationLogsReport * getTelephoneReport ## Official API Documentation [Zoom Video SDK API](https://developers.zoom.us/docs/video-sdk/apis) ## License MIT