Skip to content

Instantly share code, notes, and snippets.

@li0nel
Last active July 19, 2017 14:23
Show Gist options
  • Save li0nel/ca5ba8615f669164e367aa6da4687dcf to your computer and use it in GitHub Desktop.
Save li0nel/ca5ba8615f669164e367aa6da4687dcf to your computer and use it in GitHub Desktop.
fetch('https://api.hubapi.com/companies/v2/companies/' + inputData.companyId + '?hapikey=' + inputData.hapiKey)
.then(function(res) {
return res.json();
})
.then(function(body) {
var output = {id: inputData.companyId, company: body};
callback(null, output);
})
.catch(callback);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment