0.1.0 • Published 9 years ago

tl-core-client v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

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);
});