Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

zoomus

Package Overview
Dependencies
Maintainers
0
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zoomus

Zoom Library for Node.js

latest
npmnpm
Version
0.1.5
Version published
Weekly downloads
104
-25.71%
Maintainers
0
Weekly downloads
 
Created
Source

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

Keywords

zoom

FAQs

Package last updated on 25 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts