@assemblee.io/visioconference

1.0.0 • Public • Published

Assemblee.io

API Documentation

Simplify your communication thanks to the Assemblee videoconferencing 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 @assemblee.io/visioconference

Usage

Room creation

const Assemblee = require('@assemblee.io/visioconference');
const assemblee = new Assemblee(/* API KEY */);

assemblee
  .createDisposableRoom({
    slot: 16, // 4, 16
    private: false // true, false
  })
  .then((data) => {
    console.log(data);
  })
  .catch((error) => {
    console.log(error);
  });

Get room information

const Assemblee = require('@assemblee.io/visioconference');
const assemblee = new Assemblee(/* API KEY */);

assemblee
  .getDisposableRoom(data.token)
  .then((info) => {
    console.log(info);
  })
  .catch((error) => {
    console.log(error);
  });

Create Entreprise Meeting

const Assemblee = require('@assemblee.io/visioconference');
const assemblee = new Assemblee(/* API KEY */);

assemblee
  .createEntrepriseMeeting({
    uniquename: 'NAME',
    meeting_at: new Date().getTime(),
    msg_custom: 'Suivi de développement',
    title: 'Reunion développeur Assemblée.io',
    duration: 3600 * 1000,
    slot: 16, // 4, 16
    private: false, // true, false
    meet_zone: "EU"
  })
  .then((info) => {
    console.log(info);
  })
  .catch((error) => {
    console.log(error);
  });

Get Entreprise Meeting

const Assemblee = require('@assemblee.io/visioconference');
const assemblee = new Assemblee(/* API KEY */);

assemblee
  .getEntrepriseMeeting('token')
  .then((info) => {
    console.log(info);
  })
  .catch((error) => {
    console.log(error);
  });

Get Entreprise room

const Assemblee = require('@assemblee.io/visioconference');
const assemblee = new Assemblee(/* API KEY */);

assemblee
  .getEntrepriseRoom()
  .then((info) => {
    console.log(info);
  })
  .catch((error) => {
    console.log(error);
  });

Readme

Keywords

Package Sidebar

Install

npm i @assemblee.io/visioconference

Weekly Downloads

2

Version

1.0.0

License

ISC

Unpacked Size

5.38 kB

Total Files

3

Last publish

Collaborators

  • lyliya
  • jbedminster