Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.35 KB

README.md

File metadata and controls

65 lines (42 loc) · 1.35 KB

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