tl-core-client
v0.1.0
Published
TL Core API library
Downloads
2
Readme
Implementation of the Core API
Install
npm install tl-core-client
Example
var Core = require('tl-core-client');
var client = new Core({
apiKey: '<core api key>'
});
return client.customers().get({}, {
limit: 1
})
.then(function(customers){
console.log(customers);
}, function(err){
console.log(err);
});