Deepser is a help desk software and you can find more information in DeepDesk API Docs
To use it you need to install the node packages. Run this command in the terminal in the lib directory
npm iTo start using Deepser API you need edit this form with you credentials
DeepAPI.getInstance()
.setHost('https://deepdeskhost.net')
.setToken('token');//load an existing operation by id
let operation = new Operation();
operation.load(20);
//Edit or create operation parameters
operation.setData("title", "your title");
operation.setData("description" , "your description");
//...
operation.save();
//load Operation collection
operation.getCollection();
await operation.load();//load an existing user by id
let user = new User();
user.load(3);
//...
//load Users collection
let user = (new User()).getCollection();
await user.load();//add filters to your research
let user = (new User()).getCollection();
user.addFieldToFilter('name', '%a%', 'like');
await user.load();