mobile-connect-client

0.1.1 • Public • Published

mobile-connect-client

JavaScript library for interfacing with Mobile Connect database.

Usage

const MC = require('mobile-connect-client')
// create client object
const mc = new MC({
  fqdn: 'ccedata.dcloud.cisco.com',
  username: 'sa',
  password: 'C1sco12345'
})
 
// connect to database
async function run () {
  try {
    await mc.connect()
  } catch (e) {
    throw e
  }
  // then list agents
  const call = await mc.getCall('2142336226')
  console.log(call)
  return
}
run ()

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i mobile-connect-client

    Weekly Downloads

    2

    Version

    0.1.1

    License

    UNLICENSED

    Unpacked Size

    2.34 kB

    Total Files

    4

    Last publish

    Collaborators

    • ccondry