puroong / zoomkr

zoom api for nodejs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

zoom api for nodejs

License:MIT License


Languages

Language:TypeScript 84.4%Language:JavaScript 14.3%Language:Shell 1.3%