for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
/**
* Created by vedi on 30/10/2016.
*/
'use strict';
const Sandcage = require('..');
const sandcage = new Sandcage('[YOUR SANDCAGE API KEY]');
const payload = {
'request_id': '[request_id]'
};
sandcage
.getInfo(payload)
.then((result) => {
console.log(result);
console.log
});