1.2.1 • Published 3 years ago

visioconference.me v1.2.1

Weekly downloads
5
License
ISC
Repository
github
Last release
3 years ago

Visioconference.me

API Documentation

Simplify your communication thanks to the Visioconference.me service, access your internal meetings and all your customer appointments in one click. Easily organize all your business meetings online: no delays, a fast and secure connection, and above all, no software to install to communicate. No more material, logistical or geographical obstacles, you are directly in contact with your contacts.

This module will help you interact with our API in the easiest way possible

Install

Node

npm i visioconference.me

Usage

Room creation

const Visioconference = require("visioconference.me");
const visioconference = new Visioconference(/* API_KEY */);

/* Create an individual visioconference room
      room_name (string) (mandatory): "ROOM_NAME"
      meeting_at (number) (optionnal): 1626711133
      duration (number) (optionnal): 60
*/
visioconference
  .createRoom("ROOM_NAME", 1626711133, 60)
  .then(room => {
    console.log(room); // Display Room information
  })
  .catch(error => {
    console.error(error); // Handle error
  });
1.2.0

3 years ago

1.1.0

3 years ago

1.2.1

3 years ago

1.0.0

3 years ago