0.0.5 • Published 3 years ago

zoomkr v0.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

ZOOMKR

Zoom Library for Nodejs

Alternative for zoomus

npm version

Table of Contents

  • Features
  • Installing
  • Example
  • Instance methods

Features

Zoom API Reference

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;
}
0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago