I'm using SOAP npm to try to get all the customer, but right now I'm getting undefined in the User List console log
var soap = require('soap');
soap.createClient(url, function (err, client) {
client.login(args, function (err, session, client) {
console.log(session);
session = session.result;
client.customerCustomerList(session , function (err, list){
if(!err){
console.log(client);
console.log('User List', list);
}else{
console.log(err);
}
});
});
});