UNPKG

botfriends-handover-nodejs

Version:

NodeJs wrapper for BOTfriends Handover Tool

11 lines (8 loc) 292 B
const { HandoverClient } = require('botfriends-handover-nodejs') // init HandoverClient const handover = new HandoverClient(jwt, backendUrl) // Get online agents handover.getOnlineAgents().then(function (res) { console.log(res) // prints: { success: true, data: ['test@test.com'] } })