veriocheck

0.1.5 • Public • Published

VerioCheck Node.js Library

VerioCheck Node library provides convenient access to the VerioCheck API calls from applications written in server-side JavaScript.

Please keep in mind that this package is for use with server-side Node that uses VerioCheck secret keys.

VerioCheck provides FREE Address validation, Identity Verification, SMS Verification, Contact Data Cleaning, Name & Gender Validation, Email & IP Validation.

Signup for FREE API Keys

You can Signup for Free API Keys at https://veriocheck.com/signup

Documentation

See the API docs.

Installation

Install the package with:

npm install veriocheck

Usage

The package needs to be configured with your account's secret key which is available in your VerioCheck Dashboard. Require it with the key's value:

var VerioCheck = require('./veriocheck/index.js')("YOUR_PRIVATE_KEY", "YOUR_AUTH_CODE");
 
 
VerioCheck.validateKey(function(err, res){
        console.log(err,res);
});
 
var inputNameParams = {"fname": "jjohni", "lname": "doe"};
VerioCheck.nameCheck(inputNameParams, function(err, res){
        console.log(err,res);
});
 

Methods

This module contains easy access to the following methods. All these methods accept (inputJSONParams, CallbackFunction). Refer to the VerioCheck.nameCheck example above. Refer to API documentation for required parameters.

regeneratePublicKey, addressCheck, verifyIdentity, cleanAndVerify, smsCreateCode, smsVerifyCode, smsVerificationStatus, nameCheck, emailCheck, ipCheck

More Information

Package Sidebar

Install

npm i veriocheck

Weekly Downloads

0

Version

0.1.5

License

MIT

Last publish

Collaborators

  • veriocheck