zoomkr
v0.0.5
Published
zoom api for nodejs
Downloads
2
Readme
ZOOMKR
Zoom Library for Nodejs
Alternative for zoomus
Table of Contents
- Features
- Installing
- Example
- Instance methods
Features
Installing
You can install this package with npm
npm install zoomkr
Example
async test() {
const Zoom = require('zoomkr');
const accessToken = 'your access token'
const meeting = await Zoom.meeting.get({ param: { meetingId: 789789 }, query: {}, body: undefined, acccessToken });
console.log(meeting);
}
Instance methods
All methods should be given only one argument with type of ApiPayload.
ApiPayload has param, query, body and acceessToken.
function method(payload: ApiPayload) {
....
}
export interface ApiPayload<P, Q, B> {
param: P;
query: Q;
body: B;
accessToken: string;
}