This package has been deprecated

Author message:

WARNING: This package has moved. Please see the latest official package here https://www.npmjs.com/package/@zoom/rivet, thank you

zoomus

0.1.5 • Public • Published

THIS PACKAGE IS DEPRECATED

Please see the latest official package @zoom/rivet, thank you!


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

125

Version

0.1.5

License

MIT

Unpacked Size

17.9 kB

Total Files

18

Last publish

Collaborators

  • tommygaessler
  • zoomnode
  • zoomwebteam
  • endazoom