zoom-api-js
v0.0.1
Published
Zoom API client for Node.js
Downloads
56
Readme
Zoom API JavaScript SDK
Unofficial Zoom API JavaScript SDK built from the OpenAPI specification and with TypeScript types.
const zoom = new ZoomApi({ token: 'token' });
const recordings = await zoom.request('GET /users/{userId}/recordings', {
pathParams: { userId: '[email protected]' }
});