1.0.1 • Published 6 years ago

pivotsecurity-node v1.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

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

License

The MIT License (MIT)