README
Pivot Security - Node
Node.js API interface for Pivot Security API.
All updates to this library is documented in our CHANGELOG.
Table of Contents
Installation
Prerequisites
- Node.js version 1.x. 2.x
Install Package
nom install pivotsecurity-node
Quick Start
Info call
with user id (or email).
var account = require('account');
account.env('<public_key>','<private_key>');
account.info( {
data: { uid: '21123', 'email' : '' },
}).on('complete', function(data, response) {
if (data){
// use data..
}
}
});