This package has been deprecated

Author message:

WARNING: This package is deprecated. An updated Zoom library is under development. Please visit our documentation to use the Zoom API https://marketplace.zoom.us/docs/guides and our Official Zoom NPM Organization for a list of available packages https://www.npmjs.com/org/zoomus.

zoomus

0.1.4 • Public • Published

THIS PACKAGE IS DEPRECATED

An updated Zoom library is under development.

Please visit our documentation to use the Zoom API and our Official Zoom NPM Organization for a list of available packages.


Zoom Library for Node.js

Getting started

Install

You can install this package with npm

npm install zoomus

Documentation

Documentation is available on the Zoom REST API docs site

Quick Start

//include the zoom library
var Zoom = require("zoomus")({
    "key" : "<api_key>",
    "secret" : "<api_secret>"
});
 
//create a user
var user = {
    email: 'user@domain.com',
    type: 1
};
 
Zoom.user.create(user, function(res){
    if(res.error){
        //handle error
    } else {
        //res is user object
        console.log(res);     
    }
});

Readme

Keywords

Package Sidebar

Install

npm i zoomus

Weekly Downloads

50

Version

0.1.4

License

MIT

Unpacked Size

18.1 kB

Total Files

18

Last publish

Collaborators

  • endazoom
  • tommygaessler
  • zoomnode
  • zoomwebteam
  • michaelpurnell
  • mete.a.zoom