UNPKG

botfriends-handover-nodejs

Version:

NodeJs wrapper for BOTfriends Handover Tool

11 lines (8 loc) 311 B
const { HandoverClient } = require('botfriends-handover-nodejs') // init HandoverClient const handover = new HandoverClient(jwt, backendUrl) // Get handover status for user handover.getHandoverStatus('userId').then(function (res) { console.log(res) // prints: { success: true, data: {handover: true} } })