uplynk-api
v1.0.1
Published
Uplynk API Wrapper
Downloads
16
Readme
Uplynk API Integration for Node
Simple API wrapper for Uplynk's API. For more detailed documentation check their official API docs.
npm install uplynk-apivar uplynk = require('uplynk-api');
var api = uplynk({
ownerGUID: '<USER GUID>',
apiKey: '<API KEY>'
});
api.asset.get({id: 'SOMEID'}, function (err, resp) {
console.log(resp.body);
});
